-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (46 loc) · 1.22 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="./bitcamp-brand/bitcamp.css" />
<link rel="stylesheet" type="text/css" href="./style.css" />
<!-- Begin Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8" />
<title>Bitcamp</title>
<!-- End Meta -->
</head>
<body>
<div id="holder">
<img
id="badge"
src="./bitcamp-brand/logos/badge.png"
alt="Bitcamp Badge"
/>
<h1>Alumni Network</h1>
<div id="pw-form">
<input
id="pass"
type="password"
placeholder="Password"
onfocus="onFocus()"
onblur="onBlur()"
oninput="onInput()"
onkeypress="onKeyPress(event)"
/>
<img
id="submit"
src="./arrow-right.png"
alt="Submit"
onclick="onSubmit()"
/>
</div>
</div>
<p id="copy">© Copyright 2020 Bitcamp, LLC</p>
<script type="text/javascript">
function onSubmit() {
const pw = document.getElementById("pass").value;
redir("index", pw);
}
</script>
<script type="text/javascript" src="./request.js"></script>
</body>
</html>