First approach on ranking

This commit is contained in:
2023-06-09 00:58:53 +02:00
parent ea8d928d42
commit 8a9c2f769c
5 changed files with 59 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
{% extends "base.html" %}
{% from 'bootstrap5/form.html' import render_form %}
{% block content %}
<div class="alert alert-{{ alert_type }} col-md-4" role="alert">
<h4 class="alert-heading">{{ title }}</h4>
<button class="btn btn-primary"
onclick="window.location.href='{{ url_for("main.index") }}'">Back</button>
<div class="row">
<div>{{ render_form(form) }}</div>
</div>
</div>
{% endblock %}
```