blob: 9456e682f54dbdcf090d8e615af5322883c6edc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
/**
* Install create admin account page
*/
echo autop(elgg_echo('install:admin:instructions'));
$vars['type'] = 'admin';
$url = current_page_url();
$form_vars = array(
'action' => $url,
'disable_security' => TRUE,
);
echo elgg_view_form('install/template', $form_vars, $vars);
|