-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
107 lines (99 loc) · 4.02 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!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>YWC16 | Queueing System</title>
<link href="https://fonts.googleapis.com/css?family=Raleway:400,500,700" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/animation.css">
</head>
<body>
<!-- YWC Logo -->
<div class="logo-container">
<a href="./index.html">
<img id="ywc-logo" class="logo" src="./images/logo.svg" alt="">
</a>
</div>
<div class="branch-container">
<!-- Web Content -->
<div onclick="changePage('content')" id="content-card" class="branch-card">
<div>
<img src="./images/branches/content.svg" alt="content">
<h3 class="color-content-dark branch-name">WEB CONTENT</h3>
</div>
<div>
<h1 class="current-queue-text color-purple"><u>คิวปัจจุบัน</u></h1>
<h1 id="content-queue" class="current-queue color-content-dark">-</h1>
</div>
</div>
<!-- Web Programming -->
<div onclick="changePage('programming')" id="programming-card" class="branch-card">
<div>
<img src="./images/branches/programming.svg" alt="programming">
<h3 class="color-programming-dark branch-name">WEB PROGRAMMING</h3>
</div>
<div>
<h1 class="current-queue-text color-purple"><u>คิวปัจจุบัน</u></h1>
<h1 id="programming-queue" class="current-queue color-programming-dark">-</h1>
</div>
</div>
<!-- Web Designer -->
<div onclick="changePage('designer')" id="designer-card" class="branch-card">
<div>
<img src="./images/branches/designer.svg" alt="designer">
<h3 class="color-designer-dark branch-name">WEB DESIGNER</h3>
</div>
<div>
<h1 class="current-queue-text color-purple"><u>คิวปัจจุบัน</u></h1>
<h1 id="designer-queue" class="current-queue color-designer-dark">
-
</h1>
</div>
</div>
<!-- Web Merketing -->
<div onclick="changePage('marketing')" id="marketing-card" class="branch-card">
<div>
<img src="./images/branches/marketing.svg" alt="marketing">
<h3 class="color-marketing-dark branch-name">WEB MARKETING</h3>
</div>
<div>
<h1 class="current-queue-text color-purple"><u>คิวปัจจุบัน</u></h1>
<h1 id="marketing-queue" class="current-queue color-marketing-dark">-</h1>
</div>
</div>
</div>
<!-- QR Code -->
<div class="logo-container">
<h1 id="check-queue-text">ตรวจสอบคิวได้ที่นี่</h1>
<img src="./images/qrcode.png" alt="qrcode">
<br>
<a href="https://kykungz.github.io/ywc-queue">
https://kykungz.github.io/ywc-queue
</a>
</div>
<footer>
YWC Queueing System @2018 Created by <a href="https://github.com/kykungz">Kongpon C.</a>
</footer>
<script src="https://www.gstatic.com/firebasejs/5.5.8/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.5.8/firebase-database.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.5.8/firebase-auth.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: 'AIzaSyANpRPym9opPpLf76fAN0pntLB9M3fOTtQ',
authDomain: 'hackathon-ca2a6.firebaseapp.com',
databaseURL: 'https://hackathon-ca2a6.firebaseio.com',
projectId: 'hackathon-ca2a6',
storageBucket: 'hackathon-ca2a6.appspot.com',
messagingSenderId: '818453846503'
}
firebase.initializeApp(config)
</script>
<script src="./lib/hammer.js"></script>
<script src="./js/getPrefix.js"></script>
<script src="./js/index.js"></script>
<script src="./js/login.js"></script>
</body>
</html>