Files
marriage_frontend/templates/ui/index.html
2025-08-10 17:28:38 +09:00

37 lines
1.4 KiB
HTML

{% load static %}
<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>Главная</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href="{% static 'style.css' %}" rel="stylesheet">
<style>
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", sans-serif; margin:0; background:#f7f7fb; color:#111; }
header { background:#111827; color:#fff; padding:14px 18px; display:flex; gap:14px; }
header a { color:#cfe3ff; text-decoration:none; }
.container { max-width:900px; margin:24px auto; padding:0 16px; }
.btn { padding:10px 14px; border-radius:10px; background:#2563eb; color:#fff; border:none; text-decoration:none; }
</style>
</head>
<body>
<header>
<div style="flex:1 1 auto;">Agency Frontend</div>
<nav>
<a href="{% url 'ui:index' %}">Главная</a>
<a href="{% url 'ui:cabinet' %}">Кабинет</a>
<a href="{% url 'ui:profiles' %}">Каталог</a>
<a href="{% url 'ui:login' %}">Войти</a>
</nav>
</header>
<main class="container">
<h1>Добро пожаловать</h1>
<p>Это фронтенд для API брачного агентства.</p>
<p>
<a class="btn" href="{% url 'ui:login' %}">Войти</a>
<a class="btn" style="background:#10b981;" href="{% url 'ui:register' %}">Регистрация</a>
</p>
</main>
</body>
</html>