testflask/site/templates/result.html
Zaytseva Anastasiia e0859a05c6 Rename jpg file
2025-03-13 11:16:38 +03:00

29 lines
1.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ваш персонаж из Baldur's Gate 3</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
</head>
<body>
<nav class="navbar">
<ul>
<li><a href="/">Главная</a></li>
<li><a href="/about">Об авторе</a></li>
<li><a href="/tests">Тесты</a></li>
</ul>
</nav>
<div class="container animate__animated animate__fadeInDown">
<h1>Вы — {{ character.name }}!</h1>
<img src="{{ url_for('static', filename='images/' + character.image) }}"
alt="{{ character.name }}"
class="character-image animate__animated animate__fadeIn">
<p class="description animate__animated animate__fadeInUp">{{ character.description }}</p>
<a href="/" class="button animate__animated animate__fadeIn">Попробовать снова</a>
</div>
</body>
</html>