Added WebUI
This commit is contained in:
18
Adafruit_Video_Looper/templates/security/login_user.html
Normal file
18
Adafruit_Video_Looper/templates/security/login_user.html
Normal file
@@ -0,0 +1,18 @@
|
||||
{% extends 'admin/master.html' %}
|
||||
{% from "security/_macros.html" import render_field_with_errors, render_field %}
|
||||
{% include "security/_messages.html" %}
|
||||
{% block body %}
|
||||
{{ super() }}
|
||||
<div class="row-fluid">
|
||||
<h1>Login</h1>
|
||||
<form action="{{ url_for_security('login') }}" method="POST" name="login_user_form">
|
||||
{{ login_user_form.hidden_tag() }}
|
||||
{{ render_field_with_errors(login_user_form.email) }}
|
||||
{{ render_field_with_errors(login_user_form.password) }}
|
||||
{{ render_field_with_errors(login_user_form.remember) }}
|
||||
{{ render_field(login_user_form.next) }}
|
||||
{{ render_field(login_user_form.submit, class="btn btn-primary") }}
|
||||
</form>
|
||||
{% include "security/_menu.html" %}
|
||||
</div>
|
||||
{% endblock body %}
|
Reference in New Issue
Block a user