mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-08-23 11:26:55 +00:00
12 lines
221 B
HTML
12 lines
221 B
HTML
![]() |
{% extends 'base.html' %}
|
||
|
|
||
|
{% block title %}Login{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h2>Log In</h2>
|
||
|
<form method="post">
|
||
|
{% csrf_token %}
|
||
|
{{ form.as_p }}
|
||
|
<button type="submit">Log In</button>
|
||
|
</form>
|
||
|
{% endblock %}
|