1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 15:37:24 +00:00
Files
TypeScript-Node-Starter/views/contact.pug
amodolo 6afbd99bf6 - packages updated
- porting to bootstrap 4
2018-07-19 08:30:52 +02:00

27 lines
977 B
Plaintext

extends layout
block content
.page-header
h3 Contact Form
hr
form.form-horizontal(method='POST')
input(type='hidden', name='_csrf', value=_csrf)
.form-group.row.justify-content-md-center
label.col-sm-2.col-form-label.text-right.font-weight-bold(for='name') Name
.col-sm-8
input.form-control(type='text', name='name', id='name', autofocus=true)
.form-group.row.justify-content-md-center
label.col-sm-2.col-form-label.text-right.font-weight-bold(for='email') Email
.col-sm-8
input.form-control(type='text', name='email', id='email')
.form-group.row.justify-content-md-center
label.col-sm-2.col-form-label.text-right.font-weight-bold(for='message') Body
.col-sm-8
textarea.form-control(name='message', id='message', rows='7')
.form-group.row.justify-content-md-center
.offset-sm-2.col-sm-8
button.btn.btn-primary(type='submit')
i.fa.fa-envelope
| Send