-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcall-attendant.html
52 lines (44 loc) · 1.52 KB
/
call-attendant.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Call Attendant</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="call-attendant.js"></script>
<style> .row { outline: none; } </style>
</head>
<body>
<!--Main menu navbar-->
<script src="nav-bar.js"></script>
<div id="nav-bar"></div>
<br>
<!--Start of Call Attendant-->
<div class="container main-menu">
<button class="exit-button"></button>
<!-- Row for Call Attendant Text -->
<div class="row">
<div class="col-sm-12">
<h1 style="padding: 1em">Call Attendant?</h1>
</div>
</div>
<!-- Row for Buttons -->
<div class="row">
<div class="col-sm-6">
<button class="prompt-button yes" onclick="yes()">Yes</button>
</div>
<div class="col-sm-6">
<button class="prompt-button no" onclick="no()">No</button>
</div>
</div>
<!-- Row for Padding -->
<div class="row"><br></div>
<!-- End of rows -->
</div>
<!-- End of container -->
</body>
</html>