poc-mvc-ocr/app/templates/login.html

33 lines
981 B
HTML

<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body>
<div class="login-container">
<h2>Login</h2>
{% with messages = get_flashed_messages(with_categories=True) %}
{% if messages %}
{% for category, message in messages %}
<div class="alert alert-{{ category }}">{{ message }}</div>
{% endfor %}
{% endif %}
{% endwith %}
<form method="POST">
<label for="email">E-mail:</label>
<input type="email" name="email" required>
<label for="password">Senha:</label>
<input type="password" name="password" required>
<button type="submit">Entrar</button>
</form>
</div>
</body>
</html>