Implement server (#3)
All checks were successful
continuous-integration/drone/push Build is passing

Use Actix as HTTP service

Reviewed-on: #3
This commit is contained in:
2023-04-28 07:15:09 +00:00
parent 001f2420e5
commit bf570c477f
16 changed files with 2708 additions and 58 deletions

9
templates/error.html Normal file
View File

@ -0,0 +1,9 @@
{% extends "base_page.html" %}
{% block content %}
<div class="alert alert-danger" role="alert">
{{ message }}
</div>
<a class="btn btn-primary" href="/start" role="button">Start again</a>
{% endblock content %}