File size: 1,476 Bytes
ce0719e
 
 
 
 
 
4312f62
ce0719e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4312f62
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!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 admin-login-body">
    <div class="page-backdrop"></div>
    <main class="login-page compact-login-page">
      <section class="login-copy admin-copy">
        <p class="eyebrow">Admin Console</p>
        <h1>活动管理后台</h1>
        <p class="lead">
          在这里完成用户录入、小组配置、任务发布、线索管理和图片审核。
        </p>
      </section>

      <section class="login-panel admin-panel">
        <div class="panel-glow"></div>
        <p class="eyebrow">Secure Access</p>
        <h2>管理员登录</h2>
        {% include 'partials/flash.html' %}
        <form method="post" action="/admin" class="form-stack">
          <label>
            <span>账号</span>
            <input type="text" name="username" 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>