-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (100 loc) · 4.26 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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-122340888-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-122340888-1');
</script>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Project 7 Ranker</title>
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> -->
<meta name="viewport" content="initial-scale = 2.0, maximum-scale=1.0" />
<link rel="icon" type="image/png" href="assets\project7-circle.png">
<link rel="stylesheet" type="text/css" media="screen" href="styles.css" />
<link href="//db.onlinewebfonts.com/c/50cd2aad9c8f35800bb6beac3ad42f16?family=Azonix" rel="stylesheet">
</head>
<body>
<div id="top-banner">
<img id="banner-image" src="assets\project7-circle.png"/>
<p id="banner-title">PROJECT 7 RANKER</p>
<p id="banner-subtitle">Choose your top 7!</p>
</div>
<div class="flex-container padded-box">
<div>
<div id="tooltip-container">
<!-- add tool tip faq stuff here -->
</div>
<div id="table">
<div id="table__filter-container">
<input id="table__filter-input" oninput="filterTrainees(event)" type="text" placeholder="Search"/>
</div>
<div id="table__entry-container">
<!-- <div class="table__entry">
<div class="table__entry-icon">
<img class="table__entry-img" src="assets/trainees/LeeGaeun.png" />
<div class="table__entry-icon-border a-rank-border"></div>
<img class="table__entry-check" src="assets/check.png"/>
</div>
<div class="table__entry-text">
<strong><span class="name">Lee Gaeun</span></strong>
<span class="hangul">(이가은)</span>
<span class="company">PLEDIS ENTERTAINMENT</span>
</div>
</div> -->
</div>
</div>
<div id="filters-container">
<div id="filters-header"><strong>Filters</strong></div>
<div>
<input type="checkbox" name="show-eliminated" id="show-eliminated" onclick="showEliminatedClick(event)"/>
<label class="checkbox-label" for="show-eliminated">Show Eliminated (At Bottom)</label>
</div>
<div>
<input type="checkbox" name="show-top9" id="show-top9" onclick="showTop9Click(event)"/>
<label class="checkbox-label" for="show-top9">Show Current Top 7</label>
</div>
</div>
<div id="sharelink-container">
<!-- button -->
<input type="button" id="getlink-button" value="Get link" onclick="generateShareLink()"/>
<!-- text box -->
<input type="text" placeholder="http://" id="getlink-textbox" readonly/>
<!-- button in text box -->
<input type="button" id="copylink-button" value="Copy" onclick="copyLink()"/>
</div>
</div>
<div id="ranking__pyramid">
<div id="ranking__title"><strong>TOP 7</strong></div>
<div class="ranking__row">
<!-- <div class="ranking__entry">
<div class="ranking__entry-icon">
<img class="ranking__entry-img" src="assets/trainees/LeeGaeun.png" />
<div class="ranking__entry-icon-border a-rank-border"></div>
<div class="ranking__entry-icon-badge">1</div>
</div>
<div class="ranking__row-text">
<div class="name"><strong>Lee Gaeun</strong></div>
<div class="company">PLEDIS ENT.</div>
</div>
</div> -->
</div>
<div class="ranking__row"></div>
<div class="ranking__row"></div>
</div>
</div>
<!-- Load in script files -->
<script src="scripts/csv.js"></script>
<script src="scripts/dragula.min.js"></script>
<script src="scripts/dragdrop.js"></script>
<script src="scripts/traineesort.js"></script>
<script src="scripts/main.js"></script>
<!-- 100% privacy-first analytics -->
<script async defer src="https://scripts.simpleanalyticscdn.com/latest.js"></script>
<noscript><img src="https://queue.simpleanalyticscdn.com/noscript.gif" alt="" referrerpolicy="no-referrer-when-downgrade" /></noscript>
</body>
</html>