-
Notifications
You must be signed in to change notification settings - Fork 1
/
addcategory.html
79 lines (65 loc) · 2.86 KB
/
addcategory.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
<!DOCTYPE html>
<html>
<head>
<title>Add Category - Tixati Web Interface</title>
<link rel="shortcut icon" href="/favicon.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<style>
<!--inline main.css-->
</style>
</head>
<body style="text-align:center;">
<table class="topnav">
<tr>
<td><a href="/home">Home</a></td>
<td><a href="/transfers">Transfers</a></td>
<td><a href="/bandwidth">Bandwidth</a></td>
<td><a href="/dht">DHT</a></td>
<td><a href="/settings">Settings</a></td>
<td><a href="/help">Help</a></td>
</tr>
</table>
<br/>
<div class="titlehdr">
Add Category
</div>
<br/>
<table class="settingsbox">
<tr>
<td>Regular Category<br/>
<form method="post" action="/categories/action" enctype="multipart/form-data">
<input type="text" name="addcattext" size=40/> <input type="submit" name="addcat" Value="Add"/>
</form>
</td>
</tr>
</table>
<br>
<table class="settingsbox">
<tr>
<td>Separator<br/>
<form method="post" action="/categories/action" enctype="multipart/form-data">
<input type="text" name="addcatseptext" size=40/> <input type="submit" name="addcatsep" Value="Add"/>
</form>
</td>
</tr>
</table>
<br/>
<form method="post" action="/categories/action" enctype="multipart/form-data">
<table class="settingsbox">
<tr>
<td>
<div style="display:inline;white-space:nowrap;"><span class="allxfers">All Transfers</span> <input type="submit" name="addcatallxfers" Value="Add"/> </div>
<div style="display:inline;white-space:nowrap;"><span class="complete">Complete - Offline</span> <input type="submit" name="addcatcomplete" Value="Add"/> </div>
<div style="display:inline;white-space:nowrap;"><span class="standby">Standby</span> <input type="submit" name="addcatstandby" Value="Add"/> </div>
<div style="display:inline;white-space:nowrap;"><span class="seeding">Seeding</span> <input type="submit" name="addcatseeding" Value="Add"/> </div>
<div style="display:inline;white-space:nowrap;"><span class="downloading">Downloading</span> <input type="submit" name="addcatdownloading" Value="Add"/> </div>
<div style="display:inline;white-space:nowrap;"><span class="queued">Queued</span> <input type="submit" name="addcatqueued" Value="Add"/> </div>
<div style="display:inline;white-space:nowrap;"><span class="offline">Offline</span> <input type="submit" name="addcatoffline" Value="Add"/> </div>
<div style="display:inline;white-space:nowrap;"><span class="uncategorized">Uncategorized</span> <input type="submit" name="addcatuncat" Value="Add"/> </div>
</td>
</tr>
</table>
</form>
<br/>
</body>
</html>