forked from kykungz/ywc-queue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
126 lines (116 loc) · 5.29 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!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>YWC17 | Queueing System</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat:700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/animation.css">
<meta name="og:type" content="website">
<meta name="og:title" content="17th Young Webmaster Camp | Queueing">
<meta name="og:description" content="Young Webmaster Camp ครั้งที่ 17 “Social Change, Arrange The World” ค่ายสร้างเว็บไซต์ระดับอุดมศึกษาที่ใหญ่ที่สุด">
<meta name="og:image" content="https://ywc17.ywc.in.th/images/ogImage.png">
<meta name="article:author" content="https://www.facebook.com/ywcth">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image:src" content="https://ywc17.ywc.in.th/images/ogImage.png">
<meta name="og:url" content="https://ywc17.ywc.in.th/">
<link rel="shortcut icon" type="image/png" href="https://ywc.in.th/favicon.png"/>
<link rel="shortcut icon" type="image/x-icon" href="https://ywc.in.th/favicon.ico"/>
</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 style="font-size: 24px; color: white; text-align: center; margin-bottom: 1em;" id="announcement">
</div>
<div class="branch-container">
<!-- Web Content -->
<div onclick="changePage('content')" id="content-card" class="branch-card">
<div>
<img src="./images/branches/web-content.png" alt="web content">
<h3 class="color-content-dark branch-name">Web Content</h3>
</div>
<div>
<span class="current-queue-text">ขอเชิญหมายเลข</span>
<h1 id="content-queue" class="current-queue color-content-dark">-</h1>
</div>
</div>
<!-- Web Designer -->
<div onclick="changePage('designer')" id="designer-card" class="branch-card">
<div>
<img src="./images/branches/web-design.png" alt="web design">
<h3 class="color-designer-dark branch-name">Web Design</h3>
</div>
<div>
<span class="current-queue-text">ขอเชิญหมายเลข</span>
<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/web-marketing.png" alt="web marketing">
<h3 class="color-marketing-dark branch-name">Web Marketing</h3>
</div>
<div>
<span class="current-queue-text">ขอเชิญหมายเลข</span>
<h1 id="marketing-queue" class="current-queue color-marketing-dark">-</h1>
</div>
</div>
<!-- Web Programming -->
<div onclick="changePage('programming')" id="programming-card" class="branch-card">
<div>
<img src="./images/branches/web-programming.png" alt="web programming">
<h3 class="color-programming-dark branch-name">Web Programming</h3>
</div>
<div>
<span class="current-queue-text">ขอเชิญหมายเลข</span>
<h1 id="programming-queue" class="current-queue color-programming-dark">-</h1>
</div>
</div>
</div>
<!-- QR Code -->
<div class="qr-container">
<div class="qr-code-wrapper">
<img src="./images/qrcode.png" alt="qrcode">
</div>
<div>
<p class="invite-text" id="check-queue-text">สามารถตรวจสอบคิวเรียกสัมภาษณ์ได้ที่</p>
<a class="queue-link" href="https://q.ywc.in.th" target="_blank">
https://q.ywc.in.th/
</a>
</div>
</div>
<footer id="footer">
Copyright 2003 - 2019.
Young Webmaster Camp, in associate with Thai Webmaster Association. All right reserved.
</footer>
<script src="https://www.gstatic.com/firebasejs/7.2.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.2.2/firebase-database.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.2.2/firebase-auth.js"></script>
<script>
// Initialize Firebase
var firebaseConfig = {
apiKey: "AIzaSyCttQgKGjOqtdhWmtpG7q-nUVXkhHM0A0M",
authDomain: "ywc17-landing.firebaseapp.com",
databaseURL: "https://ywc17-landing.firebaseio.com",
projectId: "ywc17-landing",
storageBucket: "ywc17-landing.appspot.com",
messagingSenderId: "295170337515",
appId: "1:295170337515:web:e236ee46ae838dd0f66cae"
}
firebase.initializeApp(firebaseConfig)
</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>