28 lines
564 B
HTML
Raw Normal View History

2023-06-17 16:52:47 +02:00
{% extends "base.html" %}
{% block left_pannel %}
<table>
2023-08-25 16:25:17 +02:00
2023-06-17 16:52:47 +02:00
</table>
{% endblock %}
{% block content %}
{%if not current_user.is_authenticated %}
<form method="post" action="/login/">
<table>
<tr>
<td class="comlumn-name">password</td>
<td><input type="text" name="password"></td>
</tr>
<tr>
<td></td>
<td><input type="submit" name="DISCORD" value="send" class="button"/></td>
</tr>
</table>
</form>
{% else %}
<h1>Already logged in</h1>
{% endif %}
{% endblock %}