aboutsummaryrefslogtreecommitdiffstats
path: root/template/admin/html/auth.php
blob: 0ab2d9026a65645ff9b048f292fb7debf5200df5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<h1><?=$Language->template('authentication_text')?></h1>
<p><?=$Language->template('authentication_desc')?></p>

<?php if(isset($FORM['INFO'])): ?>
	<?php foreach($FORM['INFO'] as $message): ?>
		<div class="red"><?=$message?></div>
	<?php endforeach; ?>
<?php endif; ?>

<form action="" method="POST">
	<input type="hidden" name="token" value="<?=Application::getSecurityToken()?>" />

	<section class="flex">
		<section>
			<div class="form-icon-flex"><i class="fa fa-user-secret"></i></div>
			<div class="form-label-flex"><label for="form_username"><?=$Language->template('label_username')?></label></div>
			<div class="form-field-flex"><input id="form_username" name="username" value="<?=escapeHTML($FORM['DATA']['USERNAME'])?>" /></div>
		</section>
	</section>
	<section class="flex">
		<section>
			<div class="form-icon-flex"><i class="fa fa-key"></i></div>
			<div class="form-label-flex"><label for="form_password"><?=$Language->template('label_password')?></label></div>
			<div class="form-field-flex"><input type="password" id="form_password" name="password" /></div>
		</section>
	</section>
	<section class="flex flex-padding background">
		<input type="submit" name="auth" value="Auth" />
	</section>
</form>