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.
 
 
 

11 lines
330 B

<?php if(!login()) {?>
<?php login_message(null);?>
<h1>Login</h1>
<form method="POST" action="login">
User:<br>
<input type="text" name="user"/><br><br>
Pass:<br>
<input type="password" name="password"/><br><br>
<input type="submit" name="submit" value="Login"/>
</form>
<?php } else {header('location: admin');} ?>