feat: add user-scoped favorites and notes
This commit is contained in:
24
app/scouting/templates/registration/login.html
Normal file
24
app/scouting/templates/registration/login.html
Normal file
@ -0,0 +1,24 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user