2021-12-09 23:25:35 +01:00
|
|
|
{% extends "authBase.html" %}
|
|
|
|
|
2021-12-10 15:39:22 +01:00
|
|
|
{% block title %}Log In{% endblock %}
|
2021-12-09 23:25:35 +01:00
|
|
|
|
|
|
|
{% block content %}
|
2021-12-10 15:39:22 +01:00
|
|
|
<h2>Log In</h2>
|
|
|
|
<form action="">
|
|
|
|
<p>Email</p>
|
|
|
|
<input type="email" placeholder="Enter Email">
|
|
|
|
<p>Password</p>
|
|
|
|
<input type="password" placeholder="Enter Password">
|
|
|
|
<input type="submit" value="Log in">
|
|
|
|
<p><input type="checkbox">Remember Me</p>
|
|
|
|
</form>
|
2021-12-09 23:25:35 +01:00
|
|
|
{% endblock %}
|
|
|
|
|