summaryrefslogtreecommitdiff
path: root/www/login.php
diff options
context:
space:
mode:
authoroweissbarth2014-03-10 16:26:04 +0100
committeroweissbarth2014-03-10 16:26:04 +0100
commit4cbf137b5160cbd228d84a1c0776cbcea446c443 (patch)
tree21b4b64abb25bd8c1354785bb3927126dd68cafe /www/login.php
parent196aa2523e3f14131da23ad7afb7686850f84d67 (diff)
downloadfiles.iamfabulous.de-4cbf137b5160cbd228d84a1c0776cbcea446c443.tar.gz
initial ui containing header, footer and login panel
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");?>