mirror of
https://github.com/FAUSheppy/icinga-webhook-gateway
synced 2025-12-06 07:21:38 +01:00
25 lines
731 B
HTML
25 lines
731 B
HTML
{% include "head.html" %}
|
|
<body>
|
|
<div class="container mt-5">
|
|
<button class="mt-4 mb-4 btn btn-secondary" onclick="window.location.href='/'">
|
|
Back
|
|
</button>
|
|
{% if form.service.errors %}
|
|
<ul class="errors">
|
|
{% for error in form.service.errors %}
|
|
<li>{{ error }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
<form method="POST" action="/entry-form">
|
|
|
|
{{ form.csrf_token }}
|
|
{{ form.service.label }} {{ form.service(size=20) }} </br>
|
|
{{ form.timeout.label }} {{ form.timeout() }} </br>
|
|
|
|
<input type="submit" value="Go">
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|