24 lines
No EOL
798 B
Text
24 lines
No EOL
798 B
Text
extends ../layout
|
|
|
|
block stylesheets
|
|
link(rel='stylesheet', href='/stylesheets/submit.css')
|
|
link(rel='stylesheet', href='/stylesheets/form.css')
|
|
|
|
block content
|
|
div#mobile-view
|
|
h1 #{title}
|
|
form(action='/auth/register', method='POST')
|
|
span(class='form-section')
|
|
label Email
|
|
span(class='form-section-input')
|
|
input(type="email", name="email")
|
|
span(class='form-section')
|
|
label Password
|
|
span(class='form-section-input')
|
|
input(type="password", name="password")
|
|
span(class='form-section')
|
|
span(class='form-section-checkbox')
|
|
input#admin(type="checkbox", name="admin")
|
|
label(for="admin") Grant admin privileges
|
|
span(class='form-section')
|
|
button#submit-button(type="submit") Submit |