-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplain.html
43 lines (38 loc) · 1.33 KB
/
plain.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Paint Plain</title>
</head>
<body>
<form>
<label>Host:<input type="text" name="hostname"></label>
</form>
<p>
Host:<span id="hostname">undefined</span><br/>
Title:<span id="title">undefined</span>
</p>
<h3>Draw</h3>
<form>
<label>Token:<input type="text" name="token"/></label><br/>
<label>X-axis:<input type="text" name="x" style="width: 25px;"></label>
<label>Y-axis:<input type="text" name="y" style="width: 25px;"></label>
<label>Zone:<input type="text" name="zone" style="width: 25px;"></label><br/>
<label>Red:<input type="text" name="r" style="width: 25px;"/></label>
<label>Green:<input type="text" name="g" style="width: 25px;"/></label>
<label>Blue:<input type="text" name="b" style="width: 25px;"/></label>
<label>Alpha:<input type="text" name="a" style="width: 25px;"/></label>
<br/>
<input type="submit"/>
</form>
<h3>Create Zone</h3>
<form>
<label>Master Token:<input type="text" name="token"/></label><br/>
<label>Width:<input type="text" name="x" style="width: 25px;">(px)</label>
<label>Height:<input type="text" name="y" style="width: 25px;">(px)</label>
<label>Freeze time:<input type="text" name="zone" style="width: 25px;">(ticks)</label>
<br/>
<input type="submit"/>
</form>
</body>
</html>