Files
HIS/患者列表处理/人工复核网页端/templates/login.html

30 lines
911 B
HTML

<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>患者目录图片集群人工复核及抽查</title>
<link rel="stylesheet" href="/static/app.css">
</head>
<body class="login-shell">
<main class="login-panel">
<div class="login-mark">HIS</div>
<h1>患者目录图片集群人工复核及抽查</h1>
<form method="post" class="login-form">
<label>
账号
<input name="username" autocomplete="username" autofocus>
</label>
<label>
密码
<input name="password" type="password" autocomplete="current-password">
</label>
{% if error %}
<div class="form-error">{{ error }}</div>
{% endif %}
<button type="submit">登录</button>
</form>
</main>
</body>
</html>