MediaDash/templates/login.html

17 lines
660 B
HTML

{% extends "base.html" %}
{% from 'utils.html' import custom_render_form_row,make_tabs %}
{% block app_content %}
<img src="{{url_for('static',filename='icon.svg')}}" class="mx-auto d-block" width=150 height=150/>
<div class="container" style="max-width: 30% !important;">
<h2>Login</h2>
<form method="post" class="form">
{{form.csrf_token()}}
{{custom_render_form_row([form.username])}}
{{custom_render_form_row([form.password])}}
{{custom_render_form_row([form.remember])}}
{{custom_render_form_row([form.login])}}
</form>
</div>
{% endblock %}