You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
2.6 KiB
44 lines
2.6 KiB
extends ../layouts/main
|
|
block content
|
|
|
|
form(method="POST", action="/user").uk-form
|
|
section.uk-section.uk-section-muted.uk-section
|
|
.uk-container.uk-container-small
|
|
p You are creating a new member account on #[+renderSiteLink()]. If you have an account, please #[a(href="/welcome/login") log in here].
|
|
|
|
.uk-margin
|
|
label(for="email").uk-form-label Email
|
|
input(id="email", name="email", type="email", autocomplete="off", placeholder="Enter your email address").uk-input
|
|
.uk-text-small.uk-text-muted.uk-margin-small-top(class="uk-visible@m") I'm throwing your email address away after the demo, and I'm not verifying it. You won't receive email.
|
|
|
|
.uk-margin
|
|
label(for="username").uk-form-label Username
|
|
input(id="username", name="username", type="text", autocomplete="off", placeholder="Enter a username").uk-input
|
|
.uk-text-small.uk-text-muted.uk-margin-small-top(class="uk-visible@m") 40 characters max. No spaces. A-Z, a-z, 0-9, - (dash) and _ (underscore).
|
|
|
|
.uk-margin
|
|
label(for="display-name").uk-form-label Display Name
|
|
input(id="display-name", name="displayName", type="text", autocomplete="off", placeholder="Enter a display name").uk-input
|
|
.uk-text-small.uk-text-muted.uk-margin-small-top(class="uk-visible@m") 40 characters max, and can include most printable characters including emojis, spaces, whatever you're into within reason.
|
|
|
|
.uk-margin
|
|
div(uk-grid)
|
|
.uk-width-1-2
|
|
.uk-margin
|
|
label(for="password").uk-form-label Password
|
|
input(id="password", name="password", type="password", placeholder="Enter password").uk-input
|
|
.uk-text-small.uk-text-muted.uk-margin-small-top(class="uk-visible@m") Don't forget your password. There is no reset (yet).
|
|
|
|
.uk-width-1-2
|
|
.uk-margin
|
|
label(for="passwordv").uk-form-label Verify password
|
|
input(id="passwordv", name="passwordv", type="password", placeholder="Verify password").uk-input
|
|
.uk-text-small.uk-text-muted.uk-margin-small-top(class="uk-visible@m") Please enter your password again to prove you're not an idiot.
|
|
|
|
section.uk-section.uk-section-secondary.uk-section
|
|
.uk-container.uk-container-small
|
|
.uk-margin-large
|
|
.uk-text-center
|
|
.uk-margin-small
|
|
button(type="submit").uk-button.uk-button-primary Create Account
|
|
.uk-text-center.uk-text-small.uk-text-muted You aren't going to be asked for money and I'm not going to bug you. This is only a technology demo.
|