Files
werbinich/templates/not_found.html
2021-04-15 23:23:09 +02:00

11 lines
192 B
HTML

{% extends "main.html" %}
{% block title %}Not Found{% endblock %}
{% block content %}
<h1>Not Found</h1>
Object not found
<br/>
<a href={{ url_for("create_game") }}>Home</a>
{% endblock %}