46728e12f7
Co-authored-by: Cursor <cursoragent@cursor.com>
22 lines
790 B
HTML
22 lines
790 B
HTML
{% extends "base.html" %}
|
|
{% block title %}登录 · jiedian{% endblock %}
|
|
{% block body %}
|
|
<div class="auth-wrap">
|
|
<div class="auth-card">
|
|
<h1 class="auth-logo">jiedian</h1>
|
|
<p class="auth-subtitle">// secure access terminal</p>
|
|
<p class="muted">登录后管理节点与分享链接</p>
|
|
{% if error %}
|
|
<div class="alert">{{ error }}</div>
|
|
{% endif %}
|
|
<form method="post" class="form">
|
|
<label>用户名</label>
|
|
<input type="text" name="username" autocomplete="username" required autofocus>
|
|
<label>密码</label>
|
|
<input type="password" name="password" autocomplete="current-password" required>
|
|
<button type="submit" class="btn primary" style="width:100%;margin-top:20px;">登录</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|