20 lines
441 B
HTML
20 lines
441 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<title>Login</title>
|
|
{%if let Some(msg) = error %}
|
|
<p class="error">{{msg}}</p>
|
|
{% endif %}
|
|
<form method=post>
|
|
<label>
|
|
Email Address
|
|
<input type=text name=email>
|
|
</label>
|
|
<label>
|
|
Password
|
|
<input type=password name=password>
|
|
</label>
|
|
<input type=hidden name=csrf-token value="{{csrf_token}}" />
|
|
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
</html>
|