-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake-reservation.page.tmpl
48 lines (38 loc) · 1.74 KB
/
make-reservation.page.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{{template "base" .}}
{{define "content"}}
<div class="container">
<div class="row">
<div class="col">
<h1 class="mt-3">Make Reservation</h1>
<form method="post" action="" class="needs-validation" novalidate>
<div class="form-group mt-3">
<label for="first_name">First Name:</label>
<input class="form-control"
id="first_name" autocomplete="off" type='text'
name='first_name' value="" required>
</div>
<div class="form-group">
<label for="last_name">Last Name:</label>
<input class="form-control"
id="last_name" autocomplete="off" type='text'
name='last_name' value="" required>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input class="form-control" id="email"
autocomplete="off" type='email'
name='email' value="" required>
</div>
<div class="form-group">
<label for="phone">Phone:</label>
<input class="form-control" id="phone"
autocomplete="off" type='email'
name='phone' value="" required>
</div>
<hr>
<input type="submit" class="btn btn-primary" value="Make Reservation">
</form>
</div>
</div>
</div>
{{end}}