-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompletedpayment.html
64 lines (52 loc) · 1.71 KB
/
completedpayment.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Preservatorium Cafe & Cannery</title>
<link href="https://fonts.googleapis.com/css?family=Lato%7COpen+Sans" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div id="masterContainer">
<div id="headerContainer">
<img alt="Preservatorium Logo" class="headerImage" src="img/logo.png">
</div>
<div id="pageContainer">
<div id="whiteContainer">
<H1>Thank You!</H1>
<p>Your order is on the way.
<br>
<div id="progressBar">
<div></div>
</div>
<br>
<p>While you wait, please take our feedback survey:</p>
<br>
<h4>Where one is worst and five is best:</h4>
<h4>How would you rate the ease of placing your order?</h4>
<form class="surveyForm">
<input type="radio" name="q1"> 1
<input type="radio" name="q1"> 2
<input type="radio" name="q1"> 3
<input type="radio" name="q1"> 4
<input type="radio" name="q1"> 5
</form>
<h4>After your meal, how would you rate the food?</h4>
<form class="surveyForm">
<input type="radio" name="q2"> 1
<input type="radio" name="q2"> 2
<input type="radio" name="q2"> 3
<input type="radio" name="q2"> 4
<input type="radio" name="q2"> 5
</form>
<a id="Clear" href="index.html"><button id="Clear" class="navButton menuButton">Home</button></a>
</div>
</div>
<div id="footerContainer"><h6>tuterangi pleydell - for educational purposes only</h6>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<script type="text/javascript" src="js/cart.js"></script>
</body>
</html>