| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- <!DOCTYPE html>
- <html lang="ru">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Messenger - {% block title %}{% endblock %}</title>
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
- <style>
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body {
- font-family: 'Inter', sans-serif;
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
- min-height: 100vh;
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 20px;
- }
- .container {
- width: 100%;
- max-width: 400px;
- }
- .card {
- background: rgba(255, 255, 255, 0.95);
- backdrop-filter: blur(10px);
- border-radius: 20px;
- padding: 40px;
- box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
- border: 1px solid rgba(255, 255, 255, 0.2);
- }
- .logo {
- text-align: center;
- margin-bottom: 30px;
- }
- .logo h1 {
- color: #4f46e5;
- font-size: 28px;
- font-weight: 700;
- }
- .logo p {
- color: #6b7280;
- margin-top: 5px;
- }
- .form-group {
- margin-bottom: 20px;
- }
- .form-label {
- display: block;
- margin-bottom: 8px;
- color: #374151;
- font-weight: 500;
- font-size: 14px;
- }
- .form-input {
- width: 100%;
- padding: 12px 16px;
- border: 2px solid #e5e7eb;
- border-radius: 12px;
- font-size: 16px;
- transition: all 0.3s ease;
- background: white;
- }
- .form-input:focus {
- outline: none;
- border-color: #4f46e5;
- box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
- }
- .checkbox-group {
- display: flex;
- align-items: center;
- margin-bottom: 25px;
- }
- .checkbox {
- width: 18px;
- height: 18px;
- margin-right: 10px;
- accent-color: #4f46e5;
- }
- .checkbox-label {
- color: #374151;
- font-size: 14px;
- }
- .btn {
- width: 100%;
- padding: 14px;
- border: none;
- border-radius: 12px;
- font-size: 16px;
- font-weight: 600;
- cursor: pointer;
- transition: all 0.3s ease;
- }
- .btn-primary {
- background: #4f46e5;
- color: white;
- }
- .btn-primary:hover {
- background: #4338ca;
- transform: translateY(-2px);
- box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
- }
- .divider {
- text-align: center;
- margin: 25px 0;
- color: #9ca3af;
- font-size: 14px;
- position: relative;
- }
- .divider::before {
- content: '';
- position: absolute;
- top: 50%;
- left: 0;
- right: 0;
- height: 1px;
- background: #e5e7eb;
- }
- .divider span {
- background: white;
- padding: 0 15px;
- position: relative;
- }
- .switch-form {
- text-align: center;
- margin-top: 25px;
- }
- .switch-form a {
- color: #4f46e5;
- text-decoration: none;
- font-weight: 500;
- }
- .switch-form a:hover {
- text-decoration: underline;
- }
- .alert {
- padding: 12px 16px;
- border-radius: 12px;
- margin-bottom: 20px;
- font-size: 14px;
- }
- .alert-error {
- background: #fee2e2;
- color: #dc2626;
- border: 1px solid #fecaca;
- }
- .alert-success {
- background: #d1fae5;
- color: #065f46;
- border: 1px solid #a7f3d0;
- }
- @media (max-width: 480px) {
- .card {
- padding: 30px 25px;
- }
-
- body {
- padding: 15px;
- }
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="card">
- <div class="logo">
- <h1>💬 Zpenr Messenger</h1>
- <p>{% block subtitle %}Безопасное общение{% endblock %}</p>
- </div>
-
- {% with messages = get_flashed_messages(with_categories=true) %}
- {% if messages %}
- {% for category, message in messages %}
- <div class="alert alert-{{ category }}">{{ message }}</div>
- {% endfor %}
- {% endif %}
- {% endwith %}
-
- {% block form %}{% endblock %}
- </div>
- </div>
- </body>
- </html>
|