-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
77 lines (71 loc) · 2.13 KB
/
popup.html
File metadata and controls
77 lines (71 loc) · 2.13 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
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
name="viewport"
/>
<meta content="ie=edge" http-equiv="X-UA-Compatible" />
<title>ReFocused Authenticator Popup</title>
</head>
<body>
<h1 id="heading">ReFocused Authenticator</h1>
<form id="targetUrlSelector">
<div>
<input id="prod" name="targetSelector" type="radio" />
<label for="prod" id="prodLabel">Prod</label>
</div>
<div>
<input id="local" name="targetSelector" type="radio" />
<label for="local" id="localLabel">127.0.0.1:3000</label>
</div>
</form>
<p id="description"></p>
<a
class="primary button"
href="https://brevardk12.focusschoolsoftware.com/focus/Modules.php?modname=misc%2FPortal.php&redir=ref"
id="loginButton"
target="_blank"
>Log In</a
>
<script src="./popup.js" type="module"></script>
</body>
<style>
.button {
border: black solid 1px;
border-radius: 2px;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
transition: 300ms;
}
button:hover {
filter: brightness(0.8) drop-shadow(0 0 1rem #4b4b4b);
}
.primary {
background-color: #2c9fff;
}
.hidden {
display: none;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#heading {
text-align: center;
}
#targetUrlSelector {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
</style>
</html>