16 lines
667 B
HTML
16 lines
667 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>BDE INFO - Login</title>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<!--===============================================================================================-->
|
||
|
<link rel="icon" type="image/png" href="{{ url_for('static', filename='images/icons/favicon.ico') }}"/>
|
||
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/main.css') }}">
|
||
|
<!--===============================================================================================-->
|
||
|
</head>
|
||
|
<body>
|
||
|
{% block content %}{% endblock %}
|
||
|
</body>
|
||
|
</html>
|