-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfirm.html
71 lines (60 loc) · 2.52 KB
/
confirm.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>ResQ Confirmation</title>
<meta name="comp1800 team 32" content="resq" />
<meta name="author" content="BCIT" />
<!-- Bootstrap for Mobile-first, and JQuery -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" />
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/26da0e4274.js" crossorigin="anonymous"></script>
<!-- Optional styles and scripts of your own -->
<link rel="stylesheet" href="styles/style.css" />
<link rel="stylesheet" href="styles/bluepurple.css" />
</head>
<body>
<!-------------------------------------->
<!-- The following is HTML for layout -->
<!-------------------------------------->
<!-- Page Content -->
<div id="wrapper">
<div id="confirm-prompt">
<h3>Is this the restaurant?</h3>
</div>
<div id="restaurant-container">
<h4 id="restaurant-name">Restaurant Name</h4>
<div id="restaurant-img-cropper"><img src="" alt="" /></div>
</div>
<div id="yes-no">
<form action="scan.html">
<input class="btn btn-secondary" type="submit" value="No">
</form>
<form>
<input class="btn btn-primary" type="submit" value="Yes">
</form>
</div>
</div>
<!----------------------------------------------->
<!-- JS: Boostrap, Firebase, API related -->
<!----------------------------------------------->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" crossorigin="anonymous">
</script>
<!-- Firebase libraries from CDN -->
<script src="https://www.gstatic.com/firebasejs/8.0.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.0.0/firebase-auth.js"></script>
<script src="https://cdn.firebase.com/libs/firebaseui/3.5.2/firebaseui.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.0.0/firebase-firestore.js"></script>
<script src="scripts/firebase_api.js"></script>
<!--------------------------------------------------------------------->
<!-- JS files: Your own JavaScript functions included here -->
<!--------------------------------------------------------------------->
<script src="scripts/display.js"></script>
<script src="scripts/confirm.js"></script>
</body>
</html>