aboutsummaryrefslogtreecommitdiff
path: root/ui/pages/auth/register.tmpl.html
diff options
context:
space:
mode:
Diffstat (limited to 'ui/pages/auth/register.tmpl.html')
-rw-r--r--ui/pages/auth/register.tmpl.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/ui/pages/auth/register.tmpl.html b/ui/pages/auth/register.tmpl.html
new file mode 100644
index 0000000..7dfd7aa
--- /dev/null
+++ b/ui/pages/auth/register.tmpl.html
@@ -0,0 +1,16 @@
+{{define "title"}}Register{{end}}
+
+{{define "main"}}
+ <h1>Registration</h1>
+ <form hx-post="/user">
+ <label>
+ Username
+ <input type="text" placeholder="username" />
+ </label>
+ <label>
+ Password
+ <input type="password" placeholder="password" />
+ </label>
+ <button type="submit">Register</button>
+ </form>
+{{end}}