Tune idle timeout, heartbeat redirect, and update project context
This commit is contained in:
@@ -5,7 +5,8 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Администрирование</title>
|
||||
<link rel="stylesheet" href="/static/style.css" />
|
||||
<link rel="icon" type="image/png" href="/static/favicon.png" />
|
||||
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg" />
|
||||
<link rel="alternate icon" type="image/png" href="/static/favicon.png" />
|
||||
</head>
|
||||
<body>
|
||||
<header class="header">
|
||||
|
||||
@@ -5,7 +5,8 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>МОНТ - инфрастуктурный полигон</title>
|
||||
<link rel="stylesheet" href="/static/style.css" />
|
||||
<link rel="icon" type="image/png" href="/static/favicon.png" />
|
||||
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg" />
|
||||
<link rel="alternate icon" type="image/png" href="/static/favicon.png" />
|
||||
</head>
|
||||
<body class="dashboard-page">
|
||||
<header class="header">
|
||||
@@ -25,6 +26,9 @@
|
||||
<main class="admin-layout">
|
||||
<section class="panel">
|
||||
<div class="admin-intro">Добро пожаловать в инфрастуктурный полигон</div>
|
||||
{% if session_notice %}
|
||||
<div class="session-notice">{{ session_notice }}</div>
|
||||
{% endif %}
|
||||
{% if categories %}
|
||||
<div class="category-strip">
|
||||
<a class="category-chip {% if not selected_category_slug %}active{% endif %}" href="/">Все сервисы</a>
|
||||
|
||||
+17
-11
@@ -5,21 +5,27 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>МОНТ - инфрастуктурный полигон</title>
|
||||
<link rel="stylesheet" href="/static/style.css" />
|
||||
<link rel="icon" type="image/png" href="/static/favicon.png" />
|
||||
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg" />
|
||||
<link rel="alternate icon" type="image/png" href="/static/favicon.png" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="login-corner-brand">МОНТ - инфрастуктурный полигон</div>
|
||||
<main class="center-box login-page">
|
||||
<img src="/static/logo.png" alt="MONT" class="brand-logo brand-logo-fullscreen" />
|
||||
<h1 class="login-title">МОНТ - инфрастуктурный полигон</h1>
|
||||
{% if login_error %}<div class="auth-error">{{ login_error }}</div>{% endif %}
|
||||
<form method="post" action="/login" class="panel">
|
||||
<section class="login-shell">
|
||||
<img src="/static/logo.png" alt="MONT" class="brand-logo brand-logo-fullscreen" />
|
||||
<h1 class="login-title">Добро пожаловать</h1>
|
||||
{% if session_notice %}<div class="session-notice">{{ session_notice }}</div>{% endif %}
|
||||
{% if login_error %}<div class="auth-error">{{ login_error }}</div>{% endif %}
|
||||
<form method="post" action="/login" class="panel login-panel">
|
||||
<input type="hidden" name="csrf_token" value="{{ csrf_token }}" />
|
||||
<label>Login</label>
|
||||
<input type="text" name="username" required />
|
||||
<label>Password</label>
|
||||
<input type="password" name="password" required />
|
||||
<button type="submit">Sign in</button>
|
||||
</form>
|
||||
<label>Логин</label>
|
||||
<input type="text" name="username" placeholder="Введите логин" required />
|
||||
<label>Пароль</label>
|
||||
<input type="password" name="password" placeholder="Введите пароль" required />
|
||||
<button type="submit">Войти</button>
|
||||
</form>
|
||||
</section>
|
||||
</main>
|
||||
<footer class="login-made-by-wrap"><a class="made-by login-made-by" href="mailto:rgalyaviev@mont.com">Made by Galyaviev</a></footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user