styling-mail #389

Merged
philipp merged 2 commits from styling-mail into main 2024-04-17 11:34:09 +02:00
Showing only changes of commit acb1c711e5 - Show all commits

View File

@ -8,11 +8,11 @@
<div class="bg-white dark:bg-primary-900 text-black dark:text-white rounded-md block shadow mt-5"
role="alert">
<h2 class="h2">Nachricht senden</h2>
<form action="/admin/notification" method="post">
<form action="/admin/notification" method="post" class="grid gap-3 p-3">
{{ macros::select(label="Gruppe", data=roles, name="role_id") }}
{{ macros::input(label="Überschrift", name="category", type="text", required=true) }}
{{ macros::input(label="Nachricht", name="message", type="text", required=true) }}
<input type="submit" value="Abschicken" />
<input type="submit" class="btn btn-primary" value="Abschicken" />
</form>
</div>
</div>