22 lines
640 B
HTML
22 lines
640 B
HTML
<!doctype html>
|
|
<html lang="pl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Modele QL</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-dark bg-dark">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="{{ url_for('dashboard') }}">QL Platform</a>
|
|
<span class="text-light">{{ username }}</span>
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="container mt-4">
|
|
<h2>Modele i Funkcje</h2>
|
|
<p>Ta sekcja jest w budowie...</p>
|
|
<a href="{{ url_for('dashboard') }}" class="btn btn-primary">Powrót</a>
|
|
</div>
|
|
</body>
|
|
</html> |