Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-27 07:41:44

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     {{ form.as_p }}
0010     <button type="submit">Login</button>
0011 </form>
0012 <p>For an account contact wenaus@gmail.com</p>
0013 {% endblock %}