33 lines
1000 B
HTML
33 lines
1000 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>登录 - DDMS合规性测试</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h2>请登录</h2>
|
|
|
|
{% with messages = get_flashed_messages() %}
|
|
{% if messages %}
|
|
<div class="flashes">
|
|
{% for message in messages %}
|
|
<p class="flash-error">{{ message }}</p>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
<form method="post" class="form-group">
|
|
<label for="username">用户名:</label>
|
|
<input type="text" id="username" name="username" required>
|
|
|
|
<label for="password">密码:</label>
|
|
<input type="password" id="password" name="password" required>
|
|
|
|
<input type="submit" value="登录">
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html> |