diff options
| author | fusion32 <marcopuzziello@gmail.com> | 2025-08-01 19:48:26 -0300 |
|---|---|---|
| committer | fusion32 <marcopuzziello@gmail.com> | 2025-08-01 19:48:26 -0300 |
| commit | d84651a899a6104fce73d95b9c571627c55e5d16 (patch) | |
| tree | bbaf7f7646dec22dc9fdb0f136d5ba5534b1fddf /templates/account_create.tmpl | |
| download | web-d84651a899a6104fce73d95b9c571627c55e5d16.tar.gz web-d84651a899a6104fce73d95b9c571627c55e5d16.zip | |
bare bones website
Diffstat (limited to 'templates/account_create.tmpl')
| -rw-r--r-- | templates/account_create.tmpl | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/account_create.tmpl b/templates/account_create.tmpl new file mode 100644 index 0000000..6ade0bf --- /dev/null +++ b/templates/account_create.tmpl @@ -0,0 +1,22 @@ +{{template "_header.tmpl" .Common}} + <form class="box" action="/account/create" method="POST"> + <h1>Create Account</h1> + + <label for="create_account">ACCOUNT NUMBER</label> + <input id="create_account" type="password" name="account"/> + + <label for="create_email">EMAIL</label> + <input id="create_email" type="text" name="email"/> + + <label for="create_email_confirm">CONFIRM EMAIL</label> + <input id="create_email_confirm" type="text" name="email_confirm"/> + + <label for="create_password">PASSWORD</label> + <input id="create_password" type="password" name="password"/> + + <label for="create_password_confirm">CONFIRM PASSWORD</label> + <input id="create_password_confirm" type="password" name="password_confirm"/> + + <input type="submit" value="Create"/> + </form> +{{template "_footer.tmpl" .Common}}
\ No newline at end of file |
