141 lines
3.9 KiB
HTML
141 lines
3.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>GoEncode - Login</title>
|
|
<link rel="icon" type="image/png" href="/static/icon.png">
|
|
|
|
<style>
|
|
:root {
|
|
--bg: #0a0a0a;
|
|
--surface: #141414;
|
|
--border: #2a2a2a;
|
|
--text-primary: #f0f0f0;
|
|
--text-secondary: #888888;
|
|
--accent: #21D198;
|
|
--accent-hover: #1cb582;
|
|
--error: #ef4444;
|
|
--font: 'Inter', system-ui, -apple-system, sans-serif;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
background-color: var(--bg);
|
|
color: var(--text-primary);
|
|
font-family: var(--font);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.login-card {
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
padding: 2.5rem;
|
|
width: 100%;
|
|
max-width: 400px;
|
|
box-shadow: 0 10px 25px rgba(0,0,0,0.5);
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
margin-top: 0;
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 2rem;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
h1 span {
|
|
color: var(--accent);
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 1.5rem;
|
|
text-align: left;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
color: var(--text-secondary);
|
|
font-size: 0.875rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
input {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
background: var(--bg);
|
|
border: 1px solid var(--border);
|
|
color: var(--text-primary);
|
|
padding: 0.75rem 1rem;
|
|
border-radius: 4px;
|
|
font-family: inherit;
|
|
font-size: 1rem;
|
|
transition: border-color 0.2s;
|
|
}
|
|
|
|
input:focus {
|
|
outline: none;
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.btn {
|
|
width: 100%;
|
|
background: var(--accent);
|
|
color: #000;
|
|
border: 1px solid var(--accent);
|
|
padding: 0.75rem;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-family: inherit;
|
|
font-weight: 600;
|
|
font-size: 1rem;
|
|
margin-top: 1rem;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.btn:hover {
|
|
background: var(--accent-hover);
|
|
border-color: var(--accent-hover);
|
|
box-shadow: 0 0 10px rgba(33, 209, 152, 0.3);
|
|
}
|
|
|
|
.error {
|
|
color: var(--error);
|
|
font-size: 0.875rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="login-card">
|
|
<div style="display: flex; align-items: center; justify-content: center; margin-bottom: 2rem;">
|
|
<img src="/static/icon.png" alt="" style="height: 2.5rem; margin-right: 1rem; border-radius: 4px;" onerror="this.style.display='none'">
|
|
<h1 style="margin-bottom: 0;">Go<span>Encode</span></h1>
|
|
</div>
|
|
|
|
{{if .Error}}
|
|
<div class="error">{{.Error}}</div>
|
|
{{end}}
|
|
|
|
<form method="POST" action="/login">
|
|
<div class="form-group">
|
|
<label>Username</label>
|
|
<input type="text" name="username" required autofocus autocomplete="username">
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Password</label>
|
|
<input type="password" name="password" required autocomplete="current-password">
|
|
</div>
|
|
<button type="submit" class="btn">Sign In</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|