Begin adding sockets

This commit is contained in:
2023-06-09 22:27:09 +02:00
parent bba590c0a5
commit 9c43e2721a
13 changed files with 269 additions and 53 deletions

View File

@@ -1,13 +0,0 @@
{% 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 %}
```