mirror of
https://github.com/StefBuwalda/WebTech.git
synced 2025-10-30 03:10:00 +00:00
heel wat changes
This commit is contained in:
@@ -5,12 +5,11 @@ Add service
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% if feedback %}
|
||||
<p>{{feedback}}</p>
|
||||
{% endif %}
|
||||
|
||||
<form class="bg-body-tertiary" method="POST">
|
||||
{{ form.hidden_tag() }}
|
||||
{% if feedback %}
|
||||
<p class="feedback">{{feedback}}</p>
|
||||
{% endif %}
|
||||
<div>
|
||||
{{ form.name.label }} <br> {{ form.name() }}
|
||||
</div>
|
||||
|
||||
@@ -5,12 +5,11 @@ Register
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% if feedback %}
|
||||
<p>{{feedback}}</p>
|
||||
{% endif %}
|
||||
|
||||
<form class="bg-body-tertiary" method="POST">
|
||||
{{ form.hidden_tag() }}
|
||||
{% if feedback %}
|
||||
<p class="feedback">{{feedback}}</p>
|
||||
{% endif %}
|
||||
<div>
|
||||
{{ form.username.label }} <br> {{ form.username() }}
|
||||
</div>
|
||||
|
||||
@@ -5,9 +5,9 @@
|
||||
{%block content%}
|
||||
<div class="grid-container">
|
||||
{% for service in services%}
|
||||
<div class="container-xxl">
|
||||
<div onclick="location.href='{{service.url}}';" style="cursor: pointer;" class="container-xxl">
|
||||
Name: {{service["name"]}} <br>
|
||||
URL: <a href="{{service}}">{{service["url"]}}</a>
|
||||
URL: {{service["url"]}}
|
||||
</div>
|
||||
{% endfor %}
|
||||
<div class="container-xxl">
|
||||
@@ -22,11 +22,5 @@
|
||||
<div class="container-xxl">
|
||||
Item 4
|
||||
</div>
|
||||
<div class="container-xxl">
|
||||
Item 5
|
||||
</div>
|
||||
<div class="container-xxl">
|
||||
Item 6
|
||||
</div>
|
||||
</div>
|
||||
{%endblock%}
|
||||
Reference in New Issue
Block a user