17 lines
417 B
HTML
17 lines
417 B
HTML
{% extends "authBase.html" %}
|
|
|
|
{% block title %}Log In{% endblock %}
|
|
|
|
{% block content %}
|
|
<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>
|
|
{% endblock %}
|
|
|