Files
WebTech/application/dash/templates/edit_service.html
2025-04-16 13:49:03 +02:00

20 lines
426 B
HTML

{% extends 'base_template.html' %}
{% block title %}
Edit service
{% endblock %}
{% block content %}
<form class="form bg-body-tertiary" method="POST">
{{ form.hidden_tag() }}
<div>
{{ form.name.label }} <br> {{ form.name() }}
</div>
<div>
{{ form.url.label }} <br> {{ form.url() }}
</div>
<div class="submit">
{{ form.submit(value="Edit") }}
</div>
</form>
{% endblock %}