-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfirm.html
69 lines (64 loc) · 2.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Welcome to JiaBeng</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<!-- header start-->
<header>
<div class="pos-f-t d-block d-lg-none d-flex justify-content-around"> <!-- <992px magnifier show up(小於992px,只有放大鏡) -->
<div><a href="index.html"><img class="site-logo" src="img/favicon_64x64.svg" alt="JiaBeng's logo"></a></div>
<h1 class="site-sm-title text-center">
<div class="d-flex flex-column">
<a href="list.html">JiaBeng</a>
<a href="list.html">來呷飯吧</a>
</div>
</h1>
<div class="countdown" id="countdown">
<span>"30" : "00"</span>
</div>
</header>
<!-- header end-->
<div class="container d-flex flex-column" id="confirm">
<div class="d-flex justify-content-center mb-3">
<div id="menuImg" class="resturant-pic">
<!-- <img src="img/McDonaldmenu.jpg" alt="mcdonald_menu"> -->
</div>
</div>
<p class="text-center">你確定要吃這家嗎?</p>
<div class="row">
<a id="establish" class="offset-2 col-4 btn btn-primary" href="#" role="button">就是這家</a>
<a class="offset-1 col-4 btn btn-primary" href="list.html" role="button">容朕再思量</a>
</div>
</div>
</body>
<script src="https://www.gstatic.com/firebasejs/4.8.1/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyDawS0j0ZCjPMowGc2iPj_cyG1-Gahqd5o",
authDomain: "jiabeng-d02cb.firebaseapp.com",
databaseURL: "https://jiabeng-d02cb.firebaseio.com",
projectId: "jiabeng-d02cb",
storageBucket: "jiabeng-d02cb.appspot.com",
messagingSenderId: "506912575380"
};
firebase.initializeApp(config);
</script>
<script src="js/camp.js"></script>
<style>
h2{
margin-top: 30px;
text-align: center;
font-weight: 800;
}
span.text-center{
margin-top: 30px;
}
</style>
</html>