22 lines
902 B
HTML
22 lines
902 B
HTML
{% extends "base.html" %}
|
|
{% block title %}登录 - 星笺{% endblock %}
|
|
{% block content %}
|
|
<div class="auth-form">
|
|
<h2>登录</h2>
|
|
{% if error %}
|
|
<div class="alert alert-error">{{ error }}</div>
|
|
{% endif %}
|
|
<form method="post" action="/login">
|
|
<label>用户名</label>
|
|
<input type="text" name="username" required autofocus>
|
|
<label>密码</label>
|
|
<input type="password" name="password" required>
|
|
<label class="checkbox-label" style="margin-top:1rem;display:flex;align-items:center;gap:.4rem;cursor:pointer">
|
|
<input type="checkbox" name="remember_me" style="width:auto;margin:0"> 记住我
|
|
</label>
|
|
<button type="submit" class="btn btn-primary">登录</button>
|
|
</form>
|
|
<p style="margin-top:1rem;text-align:center;font-size:.85rem">没有账号?<a href="/register">去注册</a></p>
|
|
</div>
|
|
{% endblock %}
|