aboutsummaryrefslogtreecommitdiffstats
path: root/include/login.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/login.php')
-rw-r--r--include/login.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/login.php b/include/login.php
new file mode 100644
index 000000000..b11ee1719
--- /dev/null
+++ b/include/login.php
@@ -0,0 +1,19 @@
+
+<form action="process-login" method="post" >
+<div class="login-name-wrapper">
+ <label for="login-name" id="label-login-name">Email address: </label>
+ <input type="text" maxlength="60" name="login-name" id="login-name" value="" />
+</div>
+<div class="login-password-wrapper">
+ <label for="login-password" id="label-login-password">Password: </label>
+ <input type="password" maxlength="60" name="password" id="password" value="" />
+</div>
+</div>
+<div class="login-extra-links">
+ <?php if($register) { ?>
+ <a href="register" name="Register" id="register" >Register</a>
+ <?php } ?>
+ <a href="lost-password" name="Lost your password?" id="lost-password">Password Reset</a>
+</div>
+ <input type="submit" name="submit" id="login-submit" value="Login" />
+</form>