2018-11-20 11:19:58 -08:00
|
|
|
extends layout.pug
|
|
|
|
|
|
|
|
block content
|
2021-12-03 08:13:43 -08:00
|
|
|
h2= lang('SETUP_ADMIN_USER')
|
2020-10-29 11:14:38 -07:00
|
|
|
form(action=`${_CC.config.base}setup`, method='POST')
|
2018-11-20 11:19:58 -08:00
|
|
|
.field
|
2021-12-03 08:13:43 -08:00
|
|
|
label.label= lang('SETUP_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='adminUsername', placeholder=lang('SETUP_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('SETUP_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='adminPassword', placeholder=lang('SETUP_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('SETUP_BUTTON'))
|