mirror of https://github.com/Aidaho12/haproxy-wi
36 lines
1.2 KiB
HTML
36 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<script src="/inc/users.js"></script>
|
|
<table class="overview">
|
|
<tr class="overviewHead">
|
|
<td class="padding10 first-collumn" style="width: 350px;">Version</td>
|
|
<td class="padding10 first-collumn">Server</td>
|
|
<td style="width: 150px;">SYN flood protect</td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="padding10 first-collumn" style="width: 350px;">
|
|
<select id="hapver" name="hapver" required>
|
|
<option disabled>Choose HAProxy version</option>
|
|
<option value="2.0.4-1">2.0.4-1</option>
|
|
<option value="2.0.6-1">2.0.6-1</option>
|
|
<option value="2.0.7-1" selected>2.0.7-1</option>
|
|
</select>
|
|
</td>
|
|
<td class="padding10 first-collumn">
|
|
<select autofocus required name="{{select_id}}" id="{{select_id}}">
|
|
<option disabled selected>Choose server</option>
|
|
{% for select in selects %}
|
|
<option value="{{ select.2 }}">{{ select.1 }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</td>
|
|
<td>
|
|
<label for="syn_flood" title="Enable SYN flood protect"><input type="checkbox" id="syn_flood" checked>
|
|
</td>
|
|
<td>
|
|
<a class="ui-button ui-widget ui-corner-all" id="install" title="Install HAProxy">Install</a>
|
|
</td>
|
|
</table>
|
|
<div id="ajax"></div>
|
|
{% endblock %} |