| 123456789101112131415161718 |
- <% layout("/sk/layout", { title: "zmazať účet" }) %>
- <%~ include("/sk/panel/partials/navbar") %>
- <% const backIcon = `
- <svg class="icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
- <path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m12 19l-7-7l7-7m7 7H5" />
- </svg>
- ` %>
- <div class="container-row">
- <a role="button" href="/panel"><%~ backIcon %></a>
- <h2>zmazať účet</h2>
- </div>
- <p>ste si istý, že chcete zmazať svoj účet <strong><%= it?.user?.name ? `${it?.user?.name} (${it?.user.email})` : it?.user.email %></strong>?</p>
- <a role="button" class="danger" href="/auth/delete">zmazať účet</a>
|