towerops/lib/towerops_web/controllers/user_confirmation_html/new.html.heex
Graham McIntire 146f5745cf
fix: resolve compilation errors, test failures, and credo issues
- Escape HEEx template braces in GraphQL/API docs with raw(~S[...])
- Fix test assertions for updated marketing copy and UI text
- Extract helper functions in GraphQL resolvers to reduce nesting depth
- Create shared ErrorHelpers module for API controllers
- Fix ETS race condition in brute force whitelist cache for async tests
- Fix property test generators to use ASCII instead of printable unicode
- Add alert_severity helper to site_live/show
- Update accounts fixtures for explicit user confirmation
2026-02-14 12:23:10 -06:00

15 lines
574 B
Text

<Layouts.app flash={@flash} current_scope={@current_scope}>
<div class="mx-auto max-w-sm">
<.header>Resend confirmation instructions</.header>
<.form for={%{}} as={:user} action={~p"/users/confirm"} class="mt-8">
<.input name="user[email]" type="email" label="Email" required />
<.button class="w-full mt-4">Resend confirmation instructions</.button>
</.form>
<p class="text-center text-sm mt-4">
<.link href={~p"/users/log-in"}>Log in</.link>
| <.link href={~p"/users/register"}>Register</.link>
</p>
</div>
</Layouts.app>