aboutsummaryrefslogtreecommitdiff
path: root/public/themes/sourcehut/login.html
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-12-12 13:54:57 -0500
committerDrew DeVault <sir@cmpwn.com>2019-12-12 13:54:57 -0500
commitd0355fa0d85deb2f3a6ebee0e00fec516a3d6f41 (patch)
tree427bc53cc9dbe8ac71702c592c6d637d7c5390dc /public/themes/sourcehut/login.html
parentb24cc85fb19b80fe4f67f7b9a88cab7d5af282f3 (diff)
downloadalps-d0355fa0d85deb2f3a6ebee0e00fec516a3d6f41.tar.gz
alps-d0355fa0d85deb2f3a6ebee0e00fec516a3d6f41.zip
Add simple Sourcehut-based theme
Diffstat (limited to 'public/themes/sourcehut/login.html')
-rw-r--r--public/themes/sourcehut/login.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/public/themes/sourcehut/login.html b/public/themes/sourcehut/login.html
new file mode 100644
index 0000000..08074fe
--- /dev/null
+++ b/public/themes/sourcehut/login.html
@@ -0,0 +1,37 @@
+{{template "head.html"}}
+<nav class="container navbar navbar-light navbar-expand-sm">
+ <div class="col-md-12">
+ <a class="navbar-brand" href="/">
+ koushin
+ <span class="text-danger">webmail</span>
+ </a>
+ </div>
+</nav>
+
+<div class="container">
+ <form method="post" action="/login" class="col-md-6">
+ <div class="form-group">
+ <label for="username">Username</label>
+ <input
+ class="form-control"
+ type="text"
+ name="username"
+ id="username"
+ autofocus />
+ </div>
+ <div class="form-group">
+ <label for="password">Password</label>
+ <input
+ class="form-control"
+ type="password"
+ name="password"
+ id="password" />
+ </div>
+ <button
+ type="submit"
+ class="btn btn-primary"
+ >Log in</button>
+ </form>
+</div>
+
+{{template "foot.html"}}