summaryrefslogtreecommitdiff
path: root/modules/extra/webcpanel/templates/default/hostserv/request.html
diff options
context:
space:
mode:
Diffstat (limited to 'modules/extra/webcpanel/templates/default/hostserv/request.html')
-rw-r--r--modules/extra/webcpanel/templates/default/hostserv/request.html45
1 files changed, 0 insertions, 45 deletions
diff --git a/modules/extra/webcpanel/templates/default/hostserv/request.html b/modules/extra/webcpanel/templates/default/hostserv/request.html
deleted file mode 100644
index f557244d1..000000000
--- a/modules/extra/webcpanel/templates/default/hostserv/request.html
+++ /dev/null
@@ -1,45 +0,0 @@
-{INCLUDE header.html}
- <div class="panel-heading">vHost Information</div>
- <div class="panel-body">
- {FOR M IN MESSAGES}
- <div class="alert alert-info">
- {M}<br>
- </div>
- {END FOR}
-
- <table id="tableInfo" class="table table-hover">
- <tbody>
- <tr>
- <td>Your current vHost:</td>
- <td>
- {IF EXISTS VHOST}
- {VHOST}
- {ELSE}
- <em>None</em>
- {END IF}
- </td>
- <td></td>
- </tr>
- {IF EXISTS CAN_REQUEST}
- <tr>
- <td>
- {IF EXISTS VHOST}
- Request a new vHost
- {ELSE}
- Request a vHost
- {END IF}
- </td>
- <form method="post" action="/hostserv/request">
- <td><input class="form-control" name="req"></td>
- <td><button type="submit" class="btn btn-primary">Request</button></td>
- </form>
- </tr>
- {ELSE}
- <tr>
- <td colspan="2" class="text-center"><strong>vHost requests are disabled on this network.</strong></td>
- </tr>
- {END IF}
- </tbody>
- </table>
- </div>
-{INCLUDE footer.html}