more smol changes/cleanup

This commit is contained in:
DaanoGames
2025-04-15 23:25:43 +02:00
parent 5f4263b5ea
commit bc9b26a205
3 changed files with 0 additions and 23 deletions

View File

@@ -7,9 +7,6 @@ Register
{% block content %}
<form class="bg-body-tertiary" method="POST">
{{ form.hidden_tag() }}
{% if feedback="User succesfully added" %}
<p class="succes">{{feedback}}</p>
{% endif %}
{% if feedback %}
<p class="feedback">{{feedback}}</p>
{% endif %}

View File

@@ -10,17 +10,5 @@
URL: {{service["url"]}}
</div>
{% endfor %}
<div class="container-xxl">
Item 1
</div>
<div class="container-xxl">
Item 2
</div>
<div class="container-xxl">
Item 3
</div>
<div class="container-xxl">
Item 4
</div>
</div>
{%endblock%}

View File

@@ -1,6 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@@ -12,16 +11,10 @@
crossorigin="anonymous"></script>
<title>{% block title %}{% endblock %}</title>
</head>
<body>
<nav class="navbar sticky-top navbar-expand-lg bg-body-tertiary" data-bs-theme="dark">
<div class="container-fluid">
<a class="navbar-brand" href="{{url_for('index')}}">Applicatie naam</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-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 me-auto mb-2 mb-lg-0">
{% if current_user.is_authenticated %}
@@ -47,5 +40,4 @@
{% block content %}
{% endblock %}
</body>
</html>