2018-11-20 11:19:58 -08:00
|
|
|
extends layout.pug
|
|
|
|
|
|
|
|
block content
|
|
|
|
form(method='POST')
|
|
|
|
.field
|
2021-12-03 08:13:43 -08:00
|
|
|
label.label= lang('LOGIN_USERNAME')
|
2018-11-20 11:19:58 -08:00
|
|
|
.control.has-icons-left
|
2021-12-03 08:13:43 -08:00
|
|
|
input.input(type='text', name='username', placeholder=lang('LOGIN_USERNAME_PLACEHOLDER'))
|
2018-11-20 11:19:58 -08:00
|
|
|
span.icon.is-small.is-left
|
|
|
|
i.fas.fa-user
|
|
|
|
.field
|
2021-12-03 08:13:43 -08:00
|
|
|
label.label= lang('LOGIN_PASSWORD')
|
2018-11-20 11:19:58 -08:00
|
|
|
.control.has-icons-left
|
2021-12-03 08:13:43 -08:00
|
|
|
input.input(type='password', name='password', placeholder=lang('LOGIN_PASSWORD_PLACEHOLDER'))
|
2018-11-20 11:19:58 -08:00
|
|
|
span.icon.is-small.is-left
|
|
|
|
i.fas.fa-lock
|
|
|
|
.field
|
|
|
|
.control
|
2021-12-03 08:13:43 -08:00
|
|
|
input.button.is-primary(type='submit' value=lang('LOGIN_BUTTON'))
|
2022-10-03 07:40:37 -07:00
|
|
|
|