aboutsummaryrefslogtreecommitdiffstats
path: root/templates/login.html
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2018-01-20 15:46:44 +0100
committerHarald Eilertsen <haraldei@anduin.net>2018-01-20 15:46:44 +0100
commit8a30e06af2359917a671b389b13194f455965b03 (patch)
tree1a7e847da1a48a7d0ff2dc64a6b060d9ecd6315d /templates/login.html
parent178a9f444b5250a5b76d3d1a98297da8572a05e5 (diff)
downloadrocket-blog-8a30e06af2359917a671b389b13194f455965b03.tar.gz
rocket-blog-8a30e06af2359917a671b389b13194f455965b03.tar.bz2
rocket-blog-8a30e06af2359917a671b389b13194f455965b03.zip
Add simple unfinished login controller.
It will not actually log you in yet, but will check email/password and report back if it is good or not. More tbd.
Diffstat (limited to 'templates/login.html')
-rw-r--r--templates/login.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/login.html b/templates/login.html
new file mode 100644
index 0000000..88698e2
--- /dev/null
+++ b/templates/login.html
@@ -0,0 +1,15 @@
+<form name="login" id="login" method="post" action="/login/create">
+ <div class="field string required">
+ <label for="login_email">Email:</label>
+ <input type="text" id="login_email" name="email">
+ </div>
+
+ <div class="field password required">
+ <label for="login_password">Password:</label>
+ <input type="password" id="login_password" name="password">
+ </div>
+
+ <div class="actions">
+ <input type="submit" value="Log in...">
+ </div>
+</form>