123456789101112131415161718192021222324252627 |
- {{define "confirm" -}}
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Confirmation needed</title>
- <link rel="stylesheet" href="/assets/styles.css"/>
- </head>
- <body>
- <div class="container mx-auto">
- <h1 class="text-3xl font-bold underline">Confirmation needed</h1>
- {{ template "flashes" .flashes }}
- <div>
- <div>
- <img src="/assets/warning-cc0-1.0.png" style="width:48px" class="float-left" alt="yellow warning sign"/>
- <p class="float-left">{{ .question }}</p>
- </div>
- <div class="clear-both">{{ .description }}</div>
- <form method="post">
- <a href="{{ .redirect }}" class="btn-cancel">{{ .cancel }}</a>
- <button class="btn-primary">{{ .confirm }}</button>
- </form>
- </div>
- </div>
- </body>
- </html>
- {{end}}
|