aboutsummaryrefslogtreecommitdiff
path: root/ui/pages/auth/register.tmpl.html
diff options
context:
space:
mode:
authorAlexander Kavon <hawk@alexkavon.com>2023-11-28 05:24:30 -0500
committerAlexander Kavon <hawk@alexkavon.com>2023-11-28 05:24:30 -0500
commit629b0189b7bf20c748a1d37f8803ad0e3ffb8a49 (patch)
tree6692374508230b46be3aee323acd7aa25b3d4a91 /ui/pages/auth/register.tmpl.html
parent7d7059d53891bc1abb284d9b288505a5d406b307 (diff)
working container compose w/database, no more auth package, message template partial, working html template writing, auth routes in user/routes.go
Diffstat (limited to 'ui/pages/auth/register.tmpl.html')
-rw-r--r--ui/pages/auth/register.tmpl.html16
1 files changed, 0 insertions, 16 deletions
diff --git a/ui/pages/auth/register.tmpl.html b/ui/pages/auth/register.tmpl.html
deleted file mode 100644
index 7dfd7aa..0000000
--- a/ui/pages/auth/register.tmpl.html
+++ /dev/null
@@ -1,16 +0,0 @@
-{{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}}