diff options
Diffstat (limited to 'central/trunk/theme')
-rw-r--r-- | central/trunk/theme/mansub.tpl | 29 | ||||
-rw-r--r-- | central/trunk/theme/table.css | 27 |
2 files changed, 56 insertions, 0 deletions
diff --git a/central/trunk/theme/mansub.tpl b/central/trunk/theme/mansub.tpl new file mode 100644 index 0000000..a9c8850 --- /dev/null +++ b/central/trunk/theme/mansub.tpl | |||
@@ -0,0 +1,29 @@ | |||
1 | <HTML> | ||
2 | <HEAD> | ||
3 | <TITLE><!--SITENAME--> InstaDisc Central Server</TITLE> | ||
4 | </HEAD> | ||
5 | |||
6 | <BODY> | ||
7 | <CENTER> | ||
8 | <H1>InstaDisc Subscription Management</H1> | ||
9 | |||
10 | <P>If you've sponsered subscriptions here but have decided you want to move elsewhere you can delete subscriptions using the table below: | ||
11 | |||
12 | <TABLE> | ||
13 | <TR> | ||
14 | <TH>Subscription URL</TH> | ||
15 | <TH>Actions</TH> | ||
16 | </TR> | ||
17 | |||
18 | <!--BEGIN SUBSCRIPTIONS--> | ||
19 | <TR<!--SUBSCRIPTIONS.EVEN-->> | ||
20 | <TD><!--SUBSCRIPTIONS.URL--></TD> | ||
21 | <TD><A HREF="deletesub.php?id=<!--SUBSCRIPTIONS.ID-->">Delete</A></TD> | ||
22 | </TR> | ||
23 | <!--END SUBSCRIPTIONS--> | ||
24 | </TABLE> | ||
25 | |||
26 | <P><A HREF="userpanel.php">Back to User Panel</A> | ||
27 | </CENTER> | ||
28 | </BODY> | ||
29 | </HTML> | ||
diff --git a/central/trunk/theme/table.css b/central/trunk/theme/table.css new file mode 100644 index 0000000..b3603bd --- /dev/null +++ b/central/trunk/theme/table.css | |||
@@ -0,0 +1,27 @@ | |||
1 | /* InstaDisc Central - A Four Island Project */ | ||
2 | |||
3 | table { | ||
4 | border: 0; | ||
5 | width: 100%; | ||
6 | } | ||
7 | |||
8 | table, table td { | ||
9 | border-spacing: 0; | ||
10 | } | ||
11 | |||
12 | table tr { | ||
13 | background-color: #3CE4ED; | ||
14 | } | ||
15 | |||
16 | table tr.even { | ||
17 | background-color: #39B7CD; | ||
18 | } | ||
19 | |||
20 | table th { | ||
21 | background-color: #FF9912; | ||
22 | text-align: left; | ||
23 | } | ||
24 | |||
25 | table td { | ||
26 | word-wrap: break-word; | ||
27 | } | ||