summaryrefslogtreecommitdiff
path: root/modules/extra/webcpanel/templates/default
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2012-12-12 01:04:08 -0500
committerAdam <Adam@anope.org>2012-12-12 01:04:08 -0500
commit5f72d1fda5e297990aee7e0be805df0a734ca87d (patch)
tree93ac817b2614b66a2674a2acee2c378c64084620 /modules/extra/webcpanel/templates/default
parentdfff54425b5995f0f4267abbaab7cb420cf18642 (diff)
Squashed commit of the following:
commit 317ead6b395237fd0fcf8a39ef028404fcd0ece2 Author: MatthewM <mcm@they-got.us> Date: Tue Dec 11 02:14:06 2012 -0500 Added the HostServ link to the navigation bar commit 6b15d7fc5e68809f282f5d8597f5bc198851b41c Author: MatthewM <mcm@they-got.us> Date: Tue Dec 11 01:58:18 2012 -0500 Correct some slight over sights that was missed eariler commit b356a46789fabe4f69af8739e721bc069aa7a348 Author: MatthewM <mcm@they-got.us> Date: Mon Dec 10 23:44:51 2012 -0500 Started work on adding HostServ to the web panel
Diffstat (limited to 'modules/extra/webcpanel/templates/default')
-rw-r--r--modules/extra/webcpanel/templates/default/hostserv/request.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/modules/extra/webcpanel/templates/default/hostserv/request.html b/modules/extra/webcpanel/templates/default/hostserv/request.html
new file mode 100644
index 000000000..ced414242
--- /dev/null
+++ b/modules/extra/webcpanel/templates/default/hostserv/request.html
@@ -0,0 +1,23 @@
+{INCLUDE header.html}
+ {FOR M IN MESSAGES}
+ {M}<br/>
+ {END FOR}
+ <table width="100%" height="100%">
+ <tr>
+ <td>Your <b>current</b> vHost</td>
+ {IF EXISTS VHOST}
+ <td>{VHOST}</td>
+ {ELSE}
+ <td><b>None</td>
+ {END IF}
+ </table>
+ {IF EXISTS VHOST}
+ <b>Request a new vHost</b>
+ {ELSE}
+ <b>Request a vHost</b>
+ {END IF}
+ <form method="post" action="/hostserv/request">
+ <input name="req">
+ <input type="submit" value="Request">
+ </form>
+{INCLUDE footer.html}