23 lines
778 B
HTML
23 lines
778 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>Главная</title>
|
||
|
|
<link rel="stylesheet" href="{{ url_for('static', path='/style.css') }}">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
{% include "header.html" %}
|
||
|
|
<div class="container">
|
||
|
|
<h1>Welcome</h1>
|
||
|
|
<p>Step into DarkBazaar, where Seekers, Finders, and Ghostlinks move through a shadowy market of secrets—trust no one and navigate the hidden paths of this enigmatic world.</p>
|
||
|
|
{% if not 'username' in request.session %}
|
||
|
|
<p>
|
||
|
|
<a href="/login" class="button">Login</a>
|
||
|
|
<a href="/register" class="button">Register</a>
|
||
|
|
</p>
|
||
|
|
{% endif %}
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|