-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.41 KB
/
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
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Cylinder Selector</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Roboto:700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="cylSelect.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm">
<h2>CYLINDER SELECTOR</h2>
<h4>For AD and CO Locks (Please enter LD, RD, PD, JD, or PD) Incorrect values will generate a warning message
</h4><br>
<form id="cylForm">
<input type="text" id="cylEnter" placeholder="Enter cylinder type">
<input type="submit" id="button1" class="btn btn-info" onClick="listCylinders()" value="Submit Cylinder">
<button type="button" class="btn btn-info" onClick="clearCyl()">Reset Form</button>
</form><br>
<p id="displayCyl"></p>
</div>
<div class="col-sm">
<img src="https://cdn.shopify.com/s/files/1/0052/5395/5651/products/GMS-M100-NL_2048x2048.jpg?v=1608746315/ alt="Cylinder">
</div>
</div>
</div>
<script type="text/javascript" src="cylinderSelect.js"></script>
</body>
</html>