-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (64 loc) · 3.24 KB
/
index.html
File metadata and controls
69 lines (64 loc) · 3.24 KB
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>
<head>
<title>Reader</title>
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/pills/1.0.1/pills.min.css"/>
<link rel="stylesheet" type="text/css" href="css/index.css"/>
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta charset="utf-8"/>
</head>
<body>
<div id="no_js">
<a id="lr_logo" href="#"><img src="img/svg-white.svg" alt="Totality Logo"/></a>
You must have JavaScript enabled to use the TotalityHacks application reader system.
</div>
<iframe id="resumeViewer"></iframe>
<iframe id="web"></iframe>
<div id="application">
<div id="header">
<a href="#"><img id="sun" src="img/totality-sun white.png" alt="Totality Sun Logo"/></a>
<span id="page_title">Reader</span>
<span id="last_saved"><span id="num_reads">0</span> applications read.</span>
<a id="logout" href="#" style="display:block">Log Out.</a>
</div>
<form id="application_form" class="row">
<div class="one-third column" id="personal_info">
<span id="name"> </span>
<span id="school"> </span>
<span id="year"> </span>
<br />
<span id="github" class="social">Loading...</span>
<span id="devpost" class="social"></span>
<span id="linkedin" class="social"></span>
<span id="personal_website" class="social"></span>
<span id="resume" class="social"></span>
<div id="assessment">
<input type="number" min="0" max="5" id="skill" placeholder="#" autocomplete="off" required/> Skill (50%)<br />
<input type="number" min="0" max="5" id="community" placeholder="#" autocomplete="off" required/> Community (25%)<br />
<input type="number" min="0" max="5" id="passion" placeholder="#" autocomplete="off" required/> Passion (25%)<br />
</div>
<button id="submit" class="btn">
Submit Review
</button>
<button id="skip" class="btn">
Skip App
</button>
</div>
<div class="two-thirds column" id="essays">
<span>Tell us about a project you’re proud of</span>
<textarea id="question1" disabled>Loading...</textarea>
<span>Tell us about a time you helped another with programming</span>
<textarea id="question2" disabled>Loading...</textarea>
</div>
</form>
</div>
<script
src="//code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/keypress/2.1.5/keypress.min.js"></script>
<script src="//unpkg.com/ionicons@4.1.2/dist/ionicons.js"></script>
<script src="js/env.js"></script>
<script src="js/main.js"></script>
</body>
</html>