summaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
authorIvan Dolgov <ivan@dolgov.fi>2018-06-29 16:27:18 +0300
committerLars Wirzenius <liw@liw.fi>2018-07-12 11:13:13 +0300
commit33b21c676584f7a1cf584b0aeb0127e45ca0d443 (patch)
tree70c6fdf5ea17a42dabd37238715bf1c19c8c425b /views
parent5e68c02a915ff50a9b8bc14b7f68c255be92cf21 (diff)
downloadqvisqve-33b21c676584f7a1cf584b0aeb0127e45ca0d443.tar.gz
Add: trivial user login flow
Diffstat (limited to 'views')
-rw-r--r--views/login.tpl18
1 files changed, 18 insertions, 0 deletions
diff --git a/views/login.tpl b/views/login.tpl
new file mode 100644
index 0000000..dae2c4c
--- /dev/null
+++ b/views/login.tpl
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="description" content="Qvisqve Login">
+ <meta name="author" content="Qvarnlabs Ltd">
+ <title>Qvisqve Login</title>
+ </head>
+ <body>
+ <form action="/auth" method="POST">
+ User name: <input name="username" type="text" />
+ <br />
+ Password: <input name="password" type="password" />
+ <br />
+ <input type="submit" value="Login" />
+ </form>
+ </body>
+</html>