ccashfrontend/views/setup.pug
Expand-sys 89e49ed454 big changes
- market is now able to be turned off meaning merge to main incoming
 - fixed some bugs and inefficent lines of code
 - added admin ability to change bank api url and mongo url
2021-05-03 20:58:42 +10:00

21 lines
679 B
Text

extends layout
block content
.container
h1 Welcome to CCashBank Front End SETUP
.card
form(method='POST', action='/setup')
#form-group
label BANKAPIURL:
input.form-control(name='url', type='url')
label SSL enabled on front end? leave unchecked if unsure:
input.form-control(name='secure', type='checkbox')
label Enable marketplace:
input.form-control(name='marketplace', type='checkbox')
label MongoDB url insert if using marketplace
input.form-control(name='mongo', type='text')
br
input.btn.btn-primary(type='submit',value='Submit')
br
br