aboutsummaryrefslogtreecommitdiffstats
path: root/template/admin/html/auth.php
blob: f5852c1e72c6d03120f30b079d1d4cff433e70b9 (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()?>" />

	<div class="flex">
		<div class="flex-item">
			<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>
		</div>
	</div>
	<div class="flex">
		<div class="flex-item">
			<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>
		</div>
	</div>
	<div class="flex flex-padding background">
		<input type="submit" name="auth" value="Auth" />
	</div>
</form>