diff options
author | 2019-12-16 12:57:30 +0100 | |
---|---|---|
committer | 2019-12-16 12:58:21 +0100 | |
commit | e93346ffa90f6c09a9a57b48c6607925dc7ff46e (patch) | |
tree | 5e1f356017c763a604cc8bcf247759037ae51d74 /public/themes/sourcehut/login.html | |
parent | d897eeee5c4d163891d0b6a8f85d328ccada7575 (diff) | |
download | alps-e93346ffa90f6c09a9a57b48c6607925dc7ff46e.tar.gz alps-e93346ffa90f6c09a9a57b48c6607925dc7ff46e.tar.bz2 alps-e93346ffa90f6c09a9a57b48c6607925dc7ff46e.zip |
Remove the public/ directory
Now that all templates are provided by plugins, there's no need to have
a public/ directory. Themes can be in /themes instead of /public/themes.
Diffstat (limited to 'public/themes/sourcehut/login.html')
-rw-r--r-- | public/themes/sourcehut/login.html | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/public/themes/sourcehut/login.html b/public/themes/sourcehut/login.html deleted file mode 100644 index 08074fe..0000000 --- a/public/themes/sourcehut/login.html +++ /dev/null @@ -1,37 +0,0 @@ -{{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"}} |