-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (88 loc) · 2.84 KB
/
index.html
File metadata and controls
88 lines (88 loc) · 2.84 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
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css?v=1.2" />
<title>StatusGuard</title>
</head>
<body>
<div class="mainContainer">
<h1>StatusGuard</h1>
<form class="mainForm" id="startForm">
<label for="passwordOrPhrase"></label>
<input
class="velgPassordForm"
type="text"
id="passwordOrPhrase"
placeholder="Velg passord"
required
/>
<label class="velgPassordTitle" for="timelimit"
>Tid før passord må skrives på nytt:</label
>
<input
class="velgTidForm"
type="text"
id="timelimit"
placeholder="Ex: 10s, 2m, 1h, 1d"
required
/>
<button class="startBtn" type="submit">Start</button>
</form>
<div class="registrerSvarContainer">
<input
class="passwordInput"
type="text"
id="keyInput"
placeholder="Skriv inn valgt passord"
/>
<button class="godkjennBtn" id="submitKey">Godkjenn</button>
</div>
<p class="countdownDisplay" id="countdown"></p>
<div class="infoContainer">
<div class="infoContent">
<div class="infoContentText">
This web application asks users to enter a specific phrase within a
predetermined window of time in order to periodically check if they
are still alive and responsive.
<br /><br />
<div>
The application sends a notification to a Discord webhook, if the
user does not enter the target phrase within the set time. If this
happens, the application will assume that the user may be in
trouble or is unresponsive..
<br /><br /><br />
<div class="infoInfo">This description is written by AI</div>
<br /><br />
</div>
<div class="sourceDiv">
Source:
<a
href="https://github.com/sovtec/StatusGuard"
class="sourceCode"
>
https://github.com/sovtec/StatusGuard</a
>
</div>
</div>
</div>
</div>
</div>
<script type="module" src="src/StatusGuard.js?v=1.3"></script>
<script
type="module"
src="src/functions/sendToWebHookFunction.js?v=1.4"
></script>
<script
type="module"
src="src/functions/convertTimeFunction.js?v=1.3"
></script>
<script
type="module"
src="src/functions/updateCountdownFunction.js?v=1.3"
></script>
<script type="module" src="/src/webHookURL.js"></script>
</body>
</html>