Initial commit
This commit is contained in:
commit
c0b4ca1021
21 changed files with 677 additions and 0 deletions
14
app/templates/login.html
Normal file
14
app/templates/login.html
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{% 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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue