-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
30 lines (30 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.0.1/socket.io.js"></script>
<script src="./scripts/alert.js"></script>
<link rel="stylesheet" href="./style/main.css" type="text/css" />
<link rel="stylesheet" href="./style/anim.css" type="text/css" />
<link rel="stylesheet" href="./style/alert.css" type="text/css" />
</head>
<body>
<div class="settings">
<form class="settingsForm" id="config" style="display: none;">
<p class="inputForm">Token: <input type="text" id="idToken"></p>
<p class="inputForm">Duration (ms): <input type="text" id="idDuration"></p>
<input class="buttonSave" type="button" value="Save" onclick="saveConf('idToken','idDuration')" />
</form>
<form class="settingsForm" id="custom" style="display: none;">
<p class="inputForm">Name(original): <input type="number" id=""></p>
<p class="inputForm">: <input type="text" id="idDuration"></p>
<input class="buttonSave" type="button" value="Add" onclick="addCustom()" />
</form>
</div>
<div class="dontVisible">
<input type="button" class="buttonType" value="Config" onclick="disp(document.getElementById('config'))" />
<!--- <input type="button" class="buttonType" value="Special alert" onclick="disp(document.getElementById('custom'))" /> WIP FUNCTION -->
</div>
</body>
<script src="./scripts/config.js"></script>
</html>