You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

27 lines
730 B

<h1><?php echo $lang['login']; ?></h1>
<?php if(isset($_GET['msg'])): ?>
<div class="alert alert-danger">
<strong><?php echo $lang['login_failed']; ?></strong>
</div>
<?php endif; ?>
<form action="index.php" method="post">
<fieldset>
<div class="form-group login-form">
<label for="login"><?php echo $lang['login_username']; ?></label>
<input id="login" type="text" name="username" class="form-control" autofocus /></p>
</div>
<div class="form-group login-form">
<label for="pw"><?php echo $lang['login_password']; ?></label>
<input id="pw" type="password" name="userpw" class="form-control" />
</div>
<input type="submit" class="btn btn-lg btn-primary" value="<?php echo $lang['login_submit']; ?>" />
</fieldset>
</form>