40 lines
1.1 KiB
HTML
40 lines
1.1 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div>
|
||
|
<h3>Login</h3>
|
||
|
<div>
|
||
|
{% with messages = get_flashed_messages() %}
|
||
|
{% if messages %}
|
||
|
<div>
|
||
|
{{ messages[0] }}
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
{% endwith %}
|
||
|
<form method="POST" action="/{{corpus_name}}/login">
|
||
|
<div>
|
||
|
<div>
|
||
|
<input type="email" name="email" placeholder="Your Email" autofocus="">
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div>
|
||
|
<div>
|
||
|
<input type="password" name="password" placeholder="Your Password">
|
||
|
</div>
|
||
|
</div>
|
||
|
<div>
|
||
|
<label>
|
||
|
<input type="checkbox">
|
||
|
Remember me
|
||
|
</label>
|
||
|
</div>
|
||
|
<button>Login</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|