-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (98 loc) · 3.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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Simple Discord Activity</title>
<link
href="https://fonts.googleapis.com/css?family=Ubuntu"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<form id="values">
<div style="width: 100%; overflow: auto">
<div style="float: left; width: 50%">
<label for="clientid">Client ID:</label>
<br />
<input type="text" id="clientid" required />
<br /><br />
<strong>General</strong>
<br />
<label for="title">Title:</label>
<br />
<input type="text" id="title" required />
<br />
<label for="desc">Description:</label>
<br />
<textarea id="desc" cols="18" rows="3" required></textarea>
<br /><br />
<strong>Large Image</strong>
<br />
<label for="imagename">Name:</label>
<br />
<input type="text" id="imagename" />
<br />
<label for="imagedesc">Description:</label>
<br />
<input type="text" id="imagedesc" />
<br /><br />
<code id="result"></code>
</div>
<div style="float: right; width: 50%">
<strong>Timestamp</strong>
<br />
<input type="radio" name="timestamptype" id="timeoff" value="off" />
<label for="timeoff">Off</label>
<input
type="radio"
name="timestamptype"
id="timestart"
value="start"
/>
<label for="timestart">Start</label>
<input type="radio" name="timestamptype" id="timeend" value="end" />
<label for="timeend">End</label>
<br />
<label for="timestamp">Timestamp:</label>
<br />
<input type="time" id="timestamp" step="1" />
<button class="btn" id="cleartimestamp">Clear</button>
<br /><br />
<strong>Small Image</strong>
<br />
<label for="smallimagename">Name:</label>
<br />
<input type="text" id="smallimagename" />
<br />
<label for="smallimagedesc">Description:</label>
<br />
<input type="text" id="smallimagedesc" />
<br /><br />
<strong>Button 1</strong>
<br />
<label for="button1name">Name:</label>
<br />
<input type="text" id="button1name" />
<br />
<label for="button1url">URL:</label>
<br />
<input type="url" id="button1url" />
<br /><br />
<strong>Button 2</strong>
<br />
<label for="button2name">Name:</label>
<br />
<input type="text" id="button2name" />
<br />
<label for="button2url">URL:</label>
<br />
<input type="url" id="button2url" />
<br /><br />
<button class="btn" id="submitbtn" type="submit">Update</button>
</div>
</div>
</form>
<script src="renderer.js"></script>
</body>
</html>