-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (35 loc) · 1.21 KB
/
Copy pathindex.html
File metadata and controls
47 lines (35 loc) · 1.21 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
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Lot View</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4"
crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container-fluid">
<div id="header">
<div class="row">
<div class="col-sm text-center">
<h1>Lot View</h1>
<p>Copy and paste all of the data from the lot check report on dash. Then click generate.</p>
<p>Green stalls are occupied and show what vehicle class. Red stalls are empty.</p>
</div>
</div>
<div class="row">
<div class="col-sm text-center">
<textarea id="input">
</textarea>
<div class="col-sm text-center">
<button type="button" class="btn btn-secondary" onClick="onClick()">Generate</button>
</div>
</div>
</div>
</div>
<div id="display" class="row"></div>
<script src="js/index.js"></script>
</div>
</body>
</html>