124 lines
3.4 KiB
HTML
124 lines
3.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Log in — k-boris.tech</title>
|
|
<style>
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
background: #0f172a;
|
|
color: #e2e8f0;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.card {
|
|
background: #0a0f1e;
|
|
border: 1px solid #1e293b;
|
|
border-radius: 12px;
|
|
padding: 2.5rem 2rem;
|
|
width: 100%;
|
|
max-width: 360px;
|
|
}
|
|
.brand {
|
|
display: block;
|
|
text-align: center;
|
|
color: #38bdf8;
|
|
font-weight: 600;
|
|
font-size: 1.1rem;
|
|
margin-bottom: 0.4rem;
|
|
text-decoration: none;
|
|
}
|
|
.subtitle {
|
|
text-align: center;
|
|
color: #64748b;
|
|
font-size: 0.85rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
.field { margin-bottom: 1.1rem; }
|
|
.field label {
|
|
display: block;
|
|
font-size: 0.78rem;
|
|
color: #94a3b8;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.07em;
|
|
margin-bottom: 0.4rem;
|
|
}
|
|
.field input {
|
|
width: 100%;
|
|
background: #1e293b;
|
|
border: 1px solid #334155;
|
|
border-radius: 6px;
|
|
color: #e2e8f0;
|
|
padding: 0.6rem 0.75rem;
|
|
font-size: 0.9rem;
|
|
}
|
|
.field input:focus { outline: none; border-color: #38bdf8; }
|
|
.btn {
|
|
width: 100%;
|
|
background: #38bdf8;
|
|
color: #0f172a;
|
|
font-weight: 600;
|
|
border: none;
|
|
border-radius: 6px;
|
|
padding: 0.6rem;
|
|
font-size: 0.9rem;
|
|
cursor: pointer;
|
|
margin-top: 0.5rem;
|
|
}
|
|
.btn:hover { opacity: 0.88; }
|
|
.errorlist { list-style: none; color: #f87171; font-size: 0.8rem; margin-top: 0.3rem; }
|
|
.error-banner {
|
|
background: #450a0a;
|
|
border: 1px solid #f87171;
|
|
border-radius: 6px;
|
|
color: #fca5a5;
|
|
font-size: 0.83rem;
|
|
padding: 0.6rem 0.85rem;
|
|
margin-bottom: 1.25rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<a class="brand" href="/">k-boris.tech</a>
|
|
<p class="subtitle">Backlogger</p>
|
|
|
|
{% if form.non_field_errors %}
|
|
{% for error in form.non_field_errors %}
|
|
{% if 'inactive' in error|lower or 'active' in error|lower %}
|
|
<div class="error-banner">Your account is pending approval. You'll be able to log in once it's activated.</div>
|
|
{% else %}
|
|
<div class="error-banner">Invalid username or password.</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="next" value="{{ next }}">
|
|
|
|
<div class="field">
|
|
<label for="{{ form.username.id_for_label }}">Username</label>
|
|
{{ form.username }}
|
|
{{ form.username.errors }}
|
|
</div>
|
|
<div class="field">
|
|
<label for="{{ form.password.id_for_label }}">Password</label>
|
|
{{ form.password }}
|
|
{{ form.password.errors }}
|
|
</div>
|
|
|
|
<button type="submit" class="btn">Log in</button>
|
|
</form>
|
|
<p style="text-align:center; margin-top:1.25rem; font-size:0.83rem; color:#64748b;">
|
|
No account? <a href="/accounts/signup/" style="color:#38bdf8; text-decoration:none;">Sign up</a>
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|