summaryrefslogtreecommitdiff
path: root/www/login.php
diff options
context:
space:
mode:
authorroot2014-03-10 16:26:53 +0100
committerroot2014-03-10 16:26:53 +0100
commit4a062fb30b852482d38f33da86c546c2264147b9 (patch)
treefdf558b19d2f2c9f28bc4775ff1c53c074baa5ad /www/login.php
parent7365503a91ed72fe3dafc187fc35444b79ad8190 (diff)
parent4cbf137b5160cbd228d84a1c0776cbcea446c443 (diff)
downloadfiles.iamfabulous.de-4a062fb30b852482d38f33da86c546c2264147b9.tar.gz
Merge branch 'master' of git.iamfabulous.de:files.iamfabulous.de
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");?>