-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.html
31 lines (31 loc) · 1018 Bytes
/
error.html
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
<html>
<head>
{{template "header"}}
</head>
<body>
{{template "navigation" .}}
<br>
{{template "messagebox" .}}
<div class="container3">
<div class="formentry">
<form action="/error" method="POST">
<h2>Error Entry</h2>
<label for="exampleInputEmail1">Order Number</label>
<input type="text" class="form-control" name="orderid" id="orderid">
<label for="exampleInputEmail1">Issue</label>
<select class="form-control" name="issue" id="issue">
<option value="Damage">Damage</option>
<option value="Incorrect">Incorrect</option>
<option value="Missing">Missing</option>
<option value="Lost">Lost</option>
<option value="Other">Other</option>
</select>
<label for="exampleInputEmail1">Comments</label>
<input type="text" class="form-control" name="comment" id="comment"><br>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
{{template "footer" .}}
</body>
</html>