-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome.html
66 lines (65 loc) · 2.54 KB
/
welcome.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>danielkjin - Voting App</title>
<meta name="description" content="Planning poker tool design to be used for scrum teams within the Agile methodology">
<meta name="viewport" content="width=device-width" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel='stylesheet' type='text/css' href='css/main.css'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.5.0/semantic.min.css" integrity="sha512-KXol4x3sVoO+8ZsWPFI/r5KBVB/ssCGB5tsv2nVOKwLg33wTFP3fmnXa47FdSVIshVTgsYk/1734xSk9aFIa4A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.5.0/semantic.min.js" integrity="sha512-Xo0Jh8MsOn72LGV8kU5LsclG7SUzJsWGhXbWcYs2MAmChkQzwiW/yTQwdJ8w6UA9C6EVG18GHb/TrYpYCjyAQw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script>
$(function() {
$('.prompt').keyup(function (e) {
if (e.keyCode == 13) {
var value = this.value;
if (value){
document.location.href='/'+value;
}
}
});
$('i.icon').click(function(){
var value = $(this).siblings()[0].value;
if (value){
document.location.href='/'+value;
}
});
});
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GLF17933WR"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-GLF17933WR');
</script>
</head>
<body>
<div class='ui segment'>
<div class='ui teal dividing header'>
<i class='dashboard icon'></i>
<div class='content'>
Voting App
<div class='sub header'>danielkjin</div>
</div>
</div>
</div>
<div id='main'>
<div class='ui stacked segment welcome'>
Welcome to the voting app. Please enter in a room name below to join a session.
<br>
<div class='ui icon input'>
<input class='prompt' type='text' placeholder='Room Name' />
<i class='sign in link icon'></i>
</div>
</div>
</div>
</body>
</html>