55 lines
3.1 KiB
HTML
55 lines
3.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Вход</title>
|
|
<script src="/static/js/wesp-theme-boot.js"></script>
|
|
<link href="/static/css/wesp-zootech-layout.css?v=16" rel="stylesheet"> <link href="/static/css/inter-fonts.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="/static/css/zootechnician-login.css">
|
|
<link rel="stylesheet" href="/static/css/wesp-logo-loader.css">
|
|
<link href="/static/css/wesp-zootech-theme-organic.css?v=6" rel="stylesheet">
|
|
</head>
|
|
<body class="zootech-login-body">
|
|
<div class="z-login-page">
|
|
<div class="z-login-card">
|
|
<div class="z-login-form-panel">
|
|
<h1 class="z-login-title">Вход</h1>
|
|
|
|
<div id="errorMessage" class="z-login-msg z-login-msg--error" role="alert"></div>
|
|
|
|
<form class="z-login-form" id="loginForm">
|
|
<div class="z-login-field z-login-field--with-icon">
|
|
<span class="z-login-field-icon" aria-hidden="true">
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>
|
|
</span>
|
|
<input type="text" id="loginInput" class="z-login-input" placeholder="Логин"
|
|
autocomplete="username" required aria-label="Логин">
|
|
</div>
|
|
<div class="z-login-field z-login-field--with-icon">
|
|
<span class="z-login-field-icon" aria-hidden="true">
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></svg>
|
|
</span>
|
|
<input type="password" id="passwordInput" class="z-login-input" placeholder="Пароль"
|
|
autocomplete="current-password" required aria-label="Пароль">
|
|
</div>
|
|
|
|
<button type="submit" id="authButton" class="z-login-submit">
|
|
<span id="buttonText">Войти</span>
|
|
<div id="loadingSpinner" class="z-login-spinner" aria-hidden="true"></div>
|
|
</button>
|
|
|
|
<label class="z-login-remember">
|
|
<input type="checkbox" id="rememberInput" class="z-login-switch-input">
|
|
<span class="z-login-switch-ui" aria-hidden="true"></span>
|
|
<span class="z-login-remember-text">Запомнить вход</span>
|
|
</label>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script type="module" src="/static/js/pages/login-page.js?v=4"></script>
|
|
</body>
|
|
</html>
|