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.
25 lines
992 B
25 lines
992 B
extends ../layout/main
|
|
block view-content
|
|
|
|
section.uk-section.uk-section-default.uk-section-small
|
|
.uk-container
|
|
h1= site.name
|
|
|
|
form(method="POST", action="/auth/login").uk-form
|
|
input(type="hidden", name= csrfLogin.name, value= csrfLogin.token)
|
|
.uk-card.uk-card-secondary.uk-card-small
|
|
.uk-card-header
|
|
h1.uk-card-title Account Login
|
|
|
|
.uk-card-body
|
|
.uk-margin
|
|
label(for="username").uk-form-label Username
|
|
input(id="username", name="username", type="text", required, placeholder="Enter username or email address").uk-input
|
|
.uk-margin
|
|
label(for="password").uk-form-label Password
|
|
input(id="password", name="password", type="password", required, placeholder="Enter password").uk-input
|
|
|
|
.uk-card-footer
|
|
div(uk-grid).uk-flex-right
|
|
.uk-width-auto
|
|
button(type="submit").uk-button.uk-button-primary Login
|