-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.html
53 lines (53 loc) · 1.57 KB
/
settings.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
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
</head>
<body style="background: #c1c1c0">
<div style="margin: 10px">
<form>
<div>
<textarea cols="95" disabled="" id="thescript" rows="21" spellcheck="false"></textarea>
</div>
<div style="margin-top: 10px">
<input disabled="" id="enabled" name="enabled" type="checkbox"/>
<label for="enabled">
Enabled?
</label>
</div>
<div style="margin-top: 10px">
<button disabled="" id="apply" style="padding-top: 5px; padding-bottom: 5px; padding-left: 40px; padding-right: 40px" type="submit">
Apply
</button>
<span id="status" style="margin-left: 10px">
</span>
</div>
</form>
<div style="margin-top: 20px; user-select: text; cursor: auto">
<a href="https://github.com/MIvanchev/run-a-script/">
https://github.com/MIvanchev/run-a-script/
</a>
<br/>
<span id="version">
</span>
Copyright (C) 2022-present Mihail Ivanchev
<br/>
<br/>
jQuery is distributed under
<a href="https://jquery.org/license/">
its respective license.
</a>
<br/>
<br/>
The doge icon was sourced from
<a href="https://icon-library.com/icon/doge-icon-21.html">
https://icon-library.com/icon/doge-icon-21.html
</a>
<br/>
and subsequently modified.
</div>
</div>
<script src="settings.js">
</script>
</body>
</html>