Files
wg/web/templates/login.html
T

34 lines
1.4 KiB
HTML

{{define "login.html"}}
<!DOCTYPE html>
<html lang="ru">
<head>
{{template "layout_head" .}}
<title>Вход — {{siteName}}</title>
</head>
<body>
<div class="bg-pattern"></div><div class="bg-glow"></div>
<div class="login-box">
<h1 class="center">Вход в аккаунт</h1>
<p class="muted center" style="margin:0.4rem 0 1.5rem">{{siteName}}</p>
{{if .Error}}<div class="alert error">{{.Error}}</div>{{end}}
<form method="POST" action="/login">
<div class="form-group">
<label for="username">Имя пользователя или email</label>
<input id="username" name="username" type="text" required autofocus value="{{.Username}}">
</div>
<div class="form-group">
<label for="password">Пароль</label>
<input id="password" name="password" type="password" required>
</div>
<div class="form-group" style="display:flex;gap:0.6rem;align-items:center">
<input type="checkbox" id="remember_me" name="remember_me" value="1">
<label for="remember_me" style="margin:0;text-transform:none;letter-spacing:normal;font-family:var(--font-sans)">Запомнить меня</label>
</div>
<button class="btn" style="width:100%" type="submit">Войти</button>
</form>
<p class="center muted" style="margin-top:1.2rem"><a href="/" style="color:var(--accent)">На главную</a></p>
</div>
</body>
</html>
{{end}}