feat: login page polish — remove welcome text, add spacer, resize corner brand

- login.html: removed 'Добро пожаловать' heading, added 3.5rem spacer below logo
- style.css: .login-corner-brand font-size set to 1.5rem

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-27 19:31:24 +00:00
parent 56cf2d6830
commit 67d361c5c9
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -763,6 +763,7 @@ button {
left: 16px; left: 16px;
z-index: 20; z-index: 20;
color: #e8f4ff; color: #e8f4ff;
font-size: 1.5rem;
font-weight: 700; font-weight: 700;
letter-spacing: 0.01em; letter-spacing: 0.01em;
text-shadow: 0 2px 8px rgba(9, 44, 72, 0.35); text-shadow: 0 2px 8px rgba(9, 44, 72, 0.35);
+1 -1
View File
@@ -13,7 +13,7 @@
<main class="center-box login-page"> <main class="center-box login-page">
<section class="login-shell"> <section class="login-shell">
<img src="/static/logo.png" alt="MONT" class="brand-logo brand-logo-fullscreen" /> <img src="/static/logo.png" alt="MONT" class="brand-logo brand-logo-fullscreen" />
<h1 class="login-title">Добро пожаловать</h1> <div style="height:3.5rem"></div>
{% if session_notice %}<div class="session-notice">{{ session_notice }}</div>{% endif %} {% if session_notice %}<div class="session-notice">{{ session_notice }}</div>{% endif %}
{% if login_error %}<div class="auth-error">{{ login_error }}</div>{% endif %} {% if login_error %}<div class="auth-error">{{ login_error }}</div>{% endif %}
<form method="post" action="/login" class="panel login-panel"> <form method="post" action="/login" class="panel login-panel">