1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-11-12 21:22:28 +01:00
polr/login.php

27 lines
920 B
PHP
Raw Permalink Normal View History

2014-11-30 01:08:00 +01:00
<?php
require_once('lib-auth.php');
2014-11-30 01:08:00 +01:00
$polrauth = new polrauth();
if ($polrauth->islogged() != false) {
2015-10-28 01:10:01 +01:00
header("Location: admin");
2014-11-30 01:08:00 +01:00
die();
}
require_once('layout-headersm.php');
2014-11-30 01:08:00 +01:00
echo '
<div style="text-align:center">
<h1>Login</h1><br/><br/>
<div class="col-md-2"></div>
<div class="col-md-8">
<form action="handle-login.php" method="POST"><b>Username:</b><br/>
2014-11-30 01:08:00 +01:00
<input type="text" name="username" id="username" class="form-control"/><br/><b>Password:</b><br/>
<input type="password" name="password" id="password" class="form-control"/><br />
<input id="remember_me" style="padding-botton: 15px" type="checkbox" name="remember_me" value="remember_me" size="30" /> <b>Remember Me</b>
<br /><br />
<input type="submit" id="submit" style="width:80%" value="Login" class="btn btn-success"/>
</form>
</div>
<div class="col-md-2"></div>
</div>';
require_once('layout-footerlg.php');