-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 999 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>MOX ordering form</title>
<link rel="stylesheet" href="index.css">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap" rel="stylesheet">
</head>
<body>
<div id="orderPageContainer" class="container">
<h1>Create an order</h1>
<h2>Choose modules</h2>
<button id="resetBtn">Reset</button>
<button id="nextBtn">Next</button>
</div>
<div id="confirmationPageContainer" class="hidden container">
<h1>Confirm your order</h1>
<button id="backBtn">Back</button>
<button id="submitBtn">Submit</button>
</div>
<div id="summaryPageContainer" class="hidden container">
<h1>Your order has been submitted!</h1>
<p>We are already working on it.</p>
</div>
<script src="testData.js"></script>
<script src="index.js"></script>
</body>
</html>