christmas/views/login.pug
2022-10-03 10:40:37 -04:00

20 lines
651 B
Text

extends layout.pug
block content
form(method='POST')
.field
label.label= lang('LOGIN_USERNAME')
.control.has-icons-left
input.input(type='text', name='username', placeholder=lang('LOGIN_USERNAME_PLACEHOLDER'))
span.icon.is-small.is-left
i.fas.fa-user
.field
label.label= lang('LOGIN_PASSWORD')
.control.has-icons-left
input.input(type='password', name='password', placeholder=lang('LOGIN_PASSWORD_PLACEHOLDER'))
span.icon.is-small.is-left
i.fas.fa-lock
.field
.control
input.button.is-primary(type='submit' value=lang('LOGIN_BUTTON'))