19 lines
511 B
HTML
19 lines
511 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>
|
|
{{ _("The Musical Internatiionale") }}
|
|
</title>
|
|
<script src='https://unpkg.com/htmx.org@1.7.0'></script>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<button class="btn" hx-post="{{url_for('confirm_email_do', uuid=uuid)}}" hx-swap="outerHTML">
|
|
{{_("I confirm that I want to receive mails about new developments at this site")}}
|
|
</button>
|
|
</main>
|
|
</body>
|
|
</html>
|