14 lines
425 B
HTML
14 lines
425 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
{% import "bulma_wtf.html" as wtf %}
|
|
|
|
<h1>Sign In</h1>
|
|
<form action="" method="post" novalidate>
|
|
{{ form.hidden_tag() }}
|
|
<div class="field">{{ wtf.form_input_field(form.username) }}</div>
|
|
<div class="field">{{ wtf.form_input_field(form.password) }}</div>
|
|
|
|
<div>{{ form.submit(class="button is-link") }}</div>
|
|
</form>
|
|
{% endblock %}
|