summaryrefslogtreecommitdiff
path: root/www/login.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/login.php')
-rw-r--r--www/login.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/www/login.php b/www/login.php
new file mode 100644
index 0000000..e9c839b
--- /dev/null
+++ b/www/login.php
@@ -0,0 +1,14 @@
+<?php include("header.html");?>
+
+ <div class="login-area">
+ <h1 class="login-area"> Log in </h1>
+ <form id="login-form">
+ <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");?>