mirror of
https://github.com/anope/anope.git
synced 2026-07-02 06:06:39 +02:00
5f72d1fda5
commit317ead6b39Author: MatthewM <mcm@they-got.us> Date: Tue Dec 11 02:14:06 2012 -0500 Added the HostServ link to the navigation bar commit6b15d7fc5eAuthor: MatthewM <mcm@they-got.us> Date: Tue Dec 11 01:58:18 2012 -0500 Correct some slight over sights that was missed eariler commitb356a46789Author: MatthewM <mcm@they-got.us> Date: Mon Dec 10 23:44:51 2012 -0500 Started work on adding HostServ to the web panel
24 lines
470 B
HTML
24 lines
470 B
HTML
{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}
|