mirror of https://github.com/Aidaho12/haproxy-wi
15 lines
600 B
HTML
15 lines
600 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<center>
|
|
<form name="auth" id="auth" action="login.py" class="form-horizontal" method="post">
|
|
{{error_log}}
|
|
{{error}}
|
|
{{db_create}}
|
|
<br>
|
|
<label for="login">Login: </label><input type="text" name="login" id="login" required class="form-control"><br /><br />
|
|
<label for="pass">Pass: </label><input type="password" name="pass" id="pass" required class="form-control"><br /><br />
|
|
<input type="hidden" value="{{reff}}" name="ref" id="ref">
|
|
<button type="submit" name="Login" value="Enter">Sign Up</button>
|
|
</form>
|
|
</center>
|
|
{% endblock %} |