summaryrefslogtreecommitdiff
path: root/www/login.php
blob: 470065dbd46601598e4752b8172ab160e217b5b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php include("header.html");?>
	
	<link rel="stylesheet" type="text/css" href="login.css">
	
	<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");?>