cam / app /templates /login.html
cacode's picture
Upload 60 files
26d04d9 verified
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>用户登录 · {{ app_name }}</title>
<link rel="stylesheet" href="/static/style.css?v={{ static_asset_version('style.css') }}" />
</head>
<body class="login-body">
<div class="page-backdrop"></div>
<main class="login-page">
<section class="login-copy spring-copy">
<p class="eyebrow">Spring Breeze</p>
<h1>春日打卡行动</h1>
<p class="lead">
用一张张照片记录任务进展、团队节奏与春天里的线索。登录后即可查看所属小组、活动任务和实时状态。
</p>
</section>
<section class="login-panel">
<div class="panel-glow"></div>
<p class="eyebrow">User Login</p>
<h2>同学登录</h2>
{% include 'partials/flash.html' %}
<form method="post" action="/login" class="form-stack">
<label>
<span>学号</span>
<input type="text" name="student_id" placeholder="请输入学号" required />
</label>
<label>
<span>密码</span>
<input type="password" name="password" placeholder="请输入密码" required />
</label>
<button class="btn btn-primary" type="submit">进入活动</button>
</form>
</section>
</main>
</body>
</html>