51 lines
2.0 KiB
Plaintext
51 lines
2.0 KiB
Plaintext
package templates
|
|
|
|
templ Login() {
|
|
@Layout("Login") {
|
|
<div class="login-container">
|
|
<h2>Sign in</h2>
|
|
<p class="login-subtitle">Enter your credentials to continue.</p>
|
|
<form action="/login" method="POST" class="login-form">
|
|
<div class="form-group">
|
|
<label for="username">Username / Email</label>
|
|
<input type="text" id="username" name="username" required placeholder="you@example.com"/>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="password">Password</label>
|
|
<input type="password" id="password" name="password" required placeholder="Your password"/>
|
|
</div>
|
|
<button type="submit" class="login-button">Sign in</button>
|
|
</form>
|
|
<p style="margin-top: 1rem; text-align: center; color: var(--text-muted); font-size: var(--text-sm);">
|
|
Don't have an account? <a href="/register" style="color: var(--primary);">Register</a>
|
|
</p>
|
|
</div>
|
|
}
|
|
}
|
|
|
|
templ Register() {
|
|
@Layout("Register") {
|
|
<div class="login-container">
|
|
<h2>Register</h2>
|
|
<p class="login-subtitle">Create a new account to track anime.</p>
|
|
<form action="/register" method="POST" class="login-form">
|
|
<div class="form-group">
|
|
<label for="username">Username / Email</label>
|
|
<input type="text" id="username" name="username" required placeholder="you@example.com"/>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="password">Password</label>
|
|
<input type="password" id="password" name="password" required placeholder="Minimum 12 chars"/>
|
|
</div>
|
|
<p style="font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.4;">
|
|
Password must be at least 12 characters and include an uppercase letter, lowercase letter, number, and special character.
|
|
</p>
|
|
<button type="submit" class="login-button">Create account</button>
|
|
</form>
|
|
<p style="margin-top: 1rem; text-align: center; color: var(--text-muted); font-size: var(--text-sm);">
|
|
Already have an account? <a href="/login" style="color: var(--primary);">Sign in</a>
|
|
</p>
|
|
</div>
|
|
}
|
|
}
|