blob: fd1f620510396f07dc0f151eb6deaf01ea33fd91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Korabo</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% load static %}
{% load bootstrap5 %}
{% bootstrap_css %}
{% bootstrap_javascript %}
</head>
<body style="min-height: 100%">
<div class="container mt-4" style="min-height:85vh">
<h1 style="margin-bottom:-8px;">Korabo</h1>
<div style="float:left;">
<small>~make it easy with コラボ~</small>
</div>
<div style="float:right;">
<a href="{% url 'index' %}">home</a> |
<a href="{% url 'change_password' %}">change password</a> |
<a href="{% url 'logout' %}">logout</a> |
{% if request.user.is_authenticated %}Hello {{ request.user.username }} {% endif %}
</div>
<div style="clear:both;"></div>
<hr>
<br>
{% block content %}{% endblock %}
</div>
<div class="container">
<small>Version 1.0.2 | Created By <a href="https://www.domdit.com" target="_blank">Dominic DiTaranto</a> | Questions/Suggestions: me@domdit.com | Last Update 11/17/2024</small>
</div>
</body>
</html>
|