Fixed W12

This commit is contained in:
Andrew 2023-03-26 16:58:46 +07:00
parent ee0715c3b2
commit 8680f03b91
19 changed files with 444 additions and 253 deletions

View file

@ -1,11 +1,8 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
{% extends "template.twig" %}
{% block title %}Главная страница{% endblock %}
{% block head %}
{{ parent() }}
<style>
#imageDrop {
display: flex;
@ -18,8 +15,9 @@
border-radius: 1rem;
}
</style>
</head>
<body>
{% endblock %}
{% block content %}
Привет, {{user.login}}! <a href="/logout">Выйти</a>
<hr>
<b>Меню:</b>
@ -105,4 +103,4 @@ document.addEventListener("DOMContentLoaded", function() {
});
</script>
</html>
{% endblock %}