aboutsummaryrefslogtreecommitdiff
path: root/views/failsafe/install/forms/admin.php
blob: ae83cadea735cc438c0493ef2554173836bb560d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
 * Admin account form
 *
 * @uses $vars['variables'] Array of form variables. See ElggInstaller.
 */

$vars['type'] = 'admin';
$form_body = elgg_view('install/forms/template', $vars);


// @todo bug in current_page_url() with :8080 sites
//$url = current_page_url();
$url = '/install.php?step=admin';

$params = array(
	'body' => $form_body,
	'action' => $url,
	'disable_security' => TRUE,
);
echo elgg_view('input/form', $params);