BP2024/annotation_app/templates/home.html
2024-04-09 15:39:11 +02:00

20 lines
675 B
HTML

{% extends "base.html" %}
{% block title %} Welcome {% endblock %}
{% block content %}
<div class="container">
<form action="/login" id="login" method="post" >
<h3>Login anotačnej aplikácie</h3>
<input type="text" name="email" placeholder="meno.priezvisko@student.tuke.sk" class="form-control">
<button id="post" class="btn btn-primary login-btn">Prihlásiť sa</button>
{% with messages = get_flashed_messages() %}
{% if messages %}
<p style="margin-top: 2%;"> {{ messages[0] }} </p>
{% endif %}
{% endwith %}
</form>
</div>
{% endblock %}