ccashfrontend/views/bankf.pug
2021-04-19 17:32:02 +10:00

29 lines
638 B
Text

extends layout
block content
.container
h1 Welcome to the bank interface #{user}
.card
h2 Send Funds
h4 Balance: #{balance}
form(method='POST', action='/sendfunds')
#form-group
label amount to send:
input(type="number" min="0" max=balance name="amount")
br
#form-group
label reciever:
input(name='name', type='text')
br
#form-group
label Your Password:
input(name='senderpass', type='password')
br
br
input.btn.btn-primary(type='submit', value='Submit')
br