aboutsummaryrefslogtreecommitdiff
path: root/templates/login.html
diff options
context:
space:
mode:
authorGabriel Arakaki Giovanini <mail@gabrielgio.me>2023-07-19 19:50:54 +0200
committerGabriel Arakaki Giovanini <mail@gabrielgio.me>2023-07-19 19:50:54 +0200
commit1d9d5f40fe4092657f529bdba18f6f52511eea00 (patch)
tree718b5af2c43f64bbe16de927ffa7f0cb8ed5fc72 /templates/login.html
parent3e435fc0d032a6cac0bdd15cdb138905ecdb7267 (diff)
downloadlens-1d9d5f40fe4092657f529bdba18f6f52511eea00.tar.gz
lens-1d9d5f40fe4092657f529bdba18f6f52511eea00.tar.bz2
lens-1d9d5f40fe4092657f529bdba18f6f52511eea00.zip
feat: Move login from `html/template` to qtpl
Diffstat (limited to 'templates/login.html')
-rw-r--r--templates/login.html24
1 files changed, 0 insertions, 24 deletions
diff --git a/templates/login.html b/templates/login.html
deleted file mode 100644
index 607faa1..0000000
--- a/templates/login.html
+++ /dev/null
@@ -1,24 +0,0 @@
-{{template "layout.html" .}}
-{{define "title"}} Login {{end}}
-{{define "content"}}
-<form action="/login" method="post">
- <div class="field">
- <label class="label">Username</label>
- <div class="control">
- <input class="input" name="username" type="text">
- </div>
- </div>
- <div class="field">
- <label class="label">Password</label>
- <div class="control">
- <input class="input" name="password" type="password">
- </div>
- </div>
- <div class="field">
- <a href="#" class="is-pulled-left">forgot password?</a>
- </div>
- <div class="field">
- <input class="button is-pulled-right" value="login" type="submit">
- </div>
-</form>
-{{end}}