You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
2.1 KiB
HTML
58 lines
2.1 KiB
HTML
1 year ago
|
<!-- abac/templates/base.html -->
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>{% block title %}Privacy Preserving ABAC{% endblock %}</title>
|
||
|
<!-- Bootstrap CSS -->
|
||
|
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet">
|
||
|
</head>
|
||
|
|
||
|
<body class="d-flex flex-column min-vh-100">
|
||
|
<header>
|
||
|
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
||
|
<a class="navbar-brand" href="{% url 'home' %}">Privacy Preserving ABAC</a>
|
||
|
<span class="navbar-text ml-auto">
|
||
|
{% if user.is_authenticated %}
|
||
|
{{ user.username }}
|
||
|
<a class="btn btn-outline-light ml-3" href="{% url 'logout' %}">Logout</a>
|
||
|
{% else %}
|
||
|
<a class="btn btn-outline-light" href="{% url 'login' %}">Login</a>
|
||
|
{% endif %}
|
||
|
</span>
|
||
|
</nav>
|
||
|
{% if user.is_authenticated %}
|
||
|
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
||
|
<button class="btn btn-primary">Upload File</button>
|
||
|
{% if perms.abac.can_create_users %}
|
||
|
<button class="btn btn-primary ml-2">Create User</button>
|
||
|
{% endif %}
|
||
|
<span class="ml-auto">
|
||
|
<button class="btn btn-primary">Upload Certificate</button>
|
||
|
</span>
|
||
|
</nav>
|
||
|
{% endif %}
|
||
|
</header>
|
||
|
|
||
|
<main class="flex-shrink-0">
|
||
|
<div class="container mt-4">
|
||
|
{% block content %}{% endblock %}
|
||
|
</div>
|
||
|
</main>
|
||
|
|
||
|
<footer class="footer mt-auto py-3 bg-dark text-white">
|
||
|
<div class="container text-center">
|
||
|
<span>© 2023 Privacy Preserving ABAC</span>
|
||
|
</div>
|
||
|
</footer>
|
||
|
|
||
|
<!-- Bootstrap JS, Popper.js, and jQuery -->
|
||
|
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
|
||
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|