-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreateOrders.html
More file actions
38 lines (38 loc) · 1.18 KB
/
createOrders.html
File metadata and controls
38 lines (38 loc) · 1.18 KB
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>Create orders | Aorta</title>
<meta name="description" content="Automated Order Router for Tests of Accessibility (Aorta)">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/aorta/style.css">
<link rel="icon" href="/aorta/favicon.png">
<script defer src="/aorta/script.js"></script>
</head>
<body>
<header>
<p><a href="/aorta/actions">Actions</a></p>
</header>
<main>
<h1>Aorta order creation</h1>
<p>Aorta: Automated Order Router for Tests of Accessibility.</p>
<form action="/aorta/createOrder" method="post" class="flex">
<h2>Create an order</h2>
<fieldset>
<legend>Script</legend>
__scripts__
</fieldset>
<fieldset>
<legend>Batch</legend>
<div><label>
<input type="radio" name="batchName" value="none" required>
<strong>NONE</strong>: Do not use a batch
</label></div>
__batches__
</fieldset>
__you__
<p><button>Submit</button></p>
</form>
</main>
</body>
</html>