Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-06-26 08:40:26

0001 {% extends "base.html" %}
0002 
0003 {% block title %}Login{% endblock %}
0004 
0005 {% block content %}
0006 <h2>Login</h2>
0007 <form method="post">
0008     {% csrf_token %}
0009     <input type="hidden" name="next" value="{{ next }}">
0010     {{ form.as_p }}
0011     <button type="submit">Login</button>
0012 </form>
0013 <p>For an account contact wenaus@gmail.com</p>
0014 {% endblock %}