diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2018-01-20 15:46:44 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2018-01-20 15:46:44 +0100 |
commit | 8a30e06af2359917a671b389b13194f455965b03 (patch) | |
tree | 1a7e847da1a48a7d0ff2dc64a6b060d9ecd6315d /templates | |
parent | 178a9f444b5250a5b76d3d1a98297da8572a05e5 (diff) | |
download | rocket-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')
-rw-r--r-- | templates/login.html | 15 |
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> |