mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-16 23:02:13 +11:00
29 lines
638 B
Text
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
|