25 lines
528 B
HTML
25 lines
528 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Log In</title>
|
|
</head>
|
|
<body>
|
|
<p><a href="{% url 'scouting:player_list' %}">Back to search</a></p>
|
|
<h1>Log In</h1>
|
|
|
|
{% if form.errors %}
|
|
<p>Your username and password did not match. Please try again.</p>
|
|
{% endif %}
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
{% if next %}
|
|
<input type="hidden" name="next" value="{{ next }}">
|
|
{% endif %}
|
|
<button type="submit">Log in</button>
|
|
</form>
|
|
</body>
|
|
</html>
|