Best_Site/error_login.html

9 lines
368 B
HTML

{% extends "base.html" %}
{% block title %}Succes{% endblock %}
{% block content %}
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
<h1>ERROR ;[ </h1>
<div class="alert alert-danger" role="alert">
You entered the wrong email or password! <a href="{{ url_for('login')}}" class="alert-link">Back!</a>
</div>
{% endblock %}