Skip to content
This repository has been archived by the owner on Apr 8, 2024. It is now read-only.

Commit

Permalink
Format confirm template for new styling
Browse files Browse the repository at this point in the history
  • Loading branch information
atezet authored and marlonbaeten committed Dec 5, 2023
1 parent 4c99b80 commit f80badc
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions templates/confirm.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,25 @@
{{ end }}
</dl>
</section>
<form method="post">
{{ .csrfField }}
<button type="submit" class="button primary">{{ translate .language "messages.confirm" }}</button>
</form>
<form action="{{ .logoutPath }}" method="post">
{{ .csrfField }}
<button type="submit" class="button">{{ translate .language "messages.logout" }}</button>
</form>
<div class="options">
<form method="post">
{{ .csrfField }}
<button type="submit" class="button primary">
<span class="text">{{ translate .language "messages.confirm" }}</span>
</button>
</form>
<form action="{{ .logoutPath }}" method="post">
{{ .csrfField }}
<button type="submit" class="button">
<span class="text">{{ translate .language "messages.logout" }}</span>
</button>
</form>
</div>
</main>
<footer>
<span class="text">beveiligd door</span>
<span class="logo"></span>
</footer>
</body>
</html>
{{ end }}

0 comments on commit f80badc

Please sign in to comment.