first commit

This commit is contained in:
ilgazca
2025-07-28 14:57:53 +03:00
commit ef6114eff9
13 changed files with 196 additions and 0 deletions

11
templates/base.html Normal file
View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}"
{% block head %}{% endblock %}
</head>
<body style="align-content: center">
{% block body %}{% endblock %}
</body>
</html>