45 lines
1.9 KiB
HTML
45 lines
1.9 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<!-- Bootstrap CSS -->
|
|
<link rel="stylesheet" href="https://bootswatch.com/4/darkly/bootstrap.min.css">
|
|
<title>UnstableVortex CAFF Store</title>
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-primary mb-3">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="{{ url_for('IndexView:index') }}">UnstableVortex CAFF Store</a>
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
|
|
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
<ul class="navbar-nav mr-auto">
|
|
<li class="nav-item active">
|
|
<a class="nav-link" href="{{ url_for('IndexView:index') }}">Home</a>
|
|
</li>
|
|
<li class="nav-item active">
|
|
<a class="nav-link" href="{{ url_for('ProfileView:index') }}">Profile</a>
|
|
</li>
|
|
<li class="nav-item active">
|
|
<a class="nav-link" href="{{ url_for_security('login') }}">Login</a>
|
|
</li>
|
|
<li class="nav-item active">
|
|
<a class="nav-link" href="{{ url_for_security('login') }}">Register</a>
|
|
</li>
|
|
</ul>
|
|
<form class="form-inline my-2 my-lg-0">
|
|
<input class="form-control mr-sm-2" type="text" placeholder="Search">
|
|
<button class="btn btn-secondary my-2 my-sm-0" type="submit">Search</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<div class="container px-2">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html> |