26940c4574
Features: - User authentication (login/register) - Ticket CRUD with status/priority/category - Rich text description with paste-to-image - File attachment upload (images/documents) - Multi-select CC recipients - Role-based permission control (admin/user) - In-app notifications - Statistics dashboard - Gunicorn production deployment
36 lines
1.3 KiB
HTML
36 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>注册 - 工单系统</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<div class="auth-page">
|
|
<div class="auth-card">
|
|
<h1>📋 创建账号</h1>
|
|
{% if error %}
|
|
<div class="error">{{ error }}</div>
|
|
{% endif %}
|
|
<form method="post">
|
|
<div class="form-group">
|
|
<label>用户名</label>
|
|
<input name="username" type="text" required value="{{ username or '' }}" autofocus>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>密码</label>
|
|
<input name="password" type="password" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>确认密码</label>
|
|
<input name="password2" type="password" required>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary" style="width:100%;">注册</button>
|
|
</form>
|
|
<p class="auth-link">已有账号?<a href="/login">登录</a></p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|