blob: e65cfefb488ffed5b25c01c76918cda98adfcbec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php include("header.html");?>
<div class="login-area">
<h1 class="login-area"> Log in </h1>
<form id="login-form" method='post' action='/login'>
<input type="text" placeholder="username" name="username" id="username-input" class="login-input">
<input type="password" placeholder="password" name="password" id="password-input" class="login-input">
<input type="submit" name="login" id="button-input" class="login-input" value="login">
<a href="recover-password.php" id="recover-password-link">recover password</a>
</form>
</div>
<?php include("footer.html");?>
|