20 lines
675 B
HTML
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 %}
|