Initial commit

This commit is contained in:
Ana Custura 2026-02-17 08:42:33 +00:00
commit c0b4ca1021
21 changed files with 677 additions and 0 deletions

14
app/templates/login.html Normal file
View 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 %}