revert panel back to bootstrap, as long as the conversion isnt done yet
parent
c704ffcad7
commit
7ac2c7a3e2
File diff suppressed because one or more lines are too long
@ -0,0 +1,34 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>{{ title ?? "Zer.ooo - What is InfoSec?" }}</title>
|
||||
<link rel="stylesheet" href="/css/bootstrap.min.css" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
{% block head %}
|
||||
<script src="/js/jquery.min.js"></script>
|
||||
<script src="/js/bootstrap.js"></script>
|
||||
|
||||
{% endblock %}
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-inverse navbar-fixed-top">
|
||||
<div class="container">
|
||||
<a href="/" class="navbar-brand"><span class="glyphicons glyphicons-lock"></span> Zer.ooo</a>
|
||||
|
||||
<div class="pull-right">
|
||||
{% if user %}
|
||||
<a href="/panel" class="user navbar-brand">{{ user.username }}</a>
|
||||
<a href="/logout" class="navbar-brand">Logout</a>
|
||||
{% else %}
|
||||
<a class="navbar-brand" href="/login">Login</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="div" style="height:50px"> </div>
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue