init
This commit is contained in:
22
darkbazaar/src/templates/index.html
Executable file
22
darkbazaar/src/templates/index.html
Executable file
@@ -0,0 +1,22 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user