78 lines
4.6 KiB
Plaintext
78 lines
4.6 KiB
Plaintext
component OtpSignIn {
|
|
props {
|
|
requestAction = "/api/auth/otp/login/request"
|
|
requestSchema = "auth-otp-login-request"
|
|
completeAction = "/api/auth/otp/login/complete"
|
|
completeSchema = "auth-otp-login-complete"
|
|
challengeId = ""
|
|
returnTo = "/"
|
|
mfaHref = "/two-factor"
|
|
method = "email-otp"
|
|
title = "Sign in with a code"
|
|
description = "We will send a one-time code to your email address or phone number."
|
|
identifierLabel = "Email address or phone number"
|
|
requestLabel = "Send code"
|
|
verifyLabel = "Verify and sign in"
|
|
successMessage = "A one-time code has been sent."
|
|
color = "primary"
|
|
size = "md"
|
|
class = ""
|
|
}
|
|
view {
|
|
<section
|
|
{...attrs}
|
|
data-wrnexus-runtime="auth"
|
|
data-auth-otp-sign-in
|
|
data-mfa-href='{mfaHref}'
|
|
class='w-full max-w-md rounded-[var(--wire-radius-lg)] border border-[var(--wire-color-border)] bg-[var(--wire-color-surface)] p-6 text-[var(--wire-color-text)] shadow-[var(--wire-shadow-2)] {class}'
|
|
>
|
|
<div class="mb-5 flex size-11 items-center justify-center rounded-full bg-[color-mix(in_srgb,var(--wire-color-primary)_12%,transparent)] text-[var(--wire-color-primary)]">
|
|
<span class="icon-[lucide--key-round] size-5"></span>
|
|
</div>
|
|
<h1 class="m-0 text-2xl font-semibold tracking-tight">{title}</h1>
|
|
<p class="mb-0 mt-2 text-sm text-[var(--wire-color-muted)]">{description}</p>
|
|
|
|
<form
|
|
method="post"
|
|
action='{requestAction}'
|
|
data-schema='{requestSchema}'
|
|
data-auth-otp-request
|
|
novalidate
|
|
class='mt-6 space-y-4 {challengeId == "" ? "" : "hidden"}'
|
|
>
|
|
<input type="hidden" name="method" value='{method}' />
|
|
<div class="space-y-1.5">
|
|
<label for="auth-otp-identifier" class="block text-sm font-medium">{identifierLabel}</label>
|
|
<input id="auth-otp-identifier" name="identifier" type="text" autocomplete="username" class="h-11 w-full rounded-[var(--wire-radius-sm)] border border-[var(--wire-color-border)] bg-[var(--wire-color-surface-2)] px-3 text-sm outline-none focus:border-[var(--wire-color-primary)]" />
|
|
<p data-error="identifier" class="m-0 min-h-4 text-xs text-[var(--wire-color-danger)]"></p>
|
|
</div>
|
|
<p data-error="method" class="m-0 min-h-4 text-xs text-[var(--wire-color-danger)]"></p>
|
|
<p data-error="_form" role="alert" class="m-0 hidden rounded-[var(--wire-radius-sm)] bg-[color-mix(in_srgb,var(--wire-color-danger)_10%,transparent)] p-3 text-sm text-[var(--wire-color-danger)]"></p>
|
|
<p data-success='{successMessage}' role="status" hidden class="m-0 rounded-[var(--wire-radius-sm)] bg-[color-mix(in_srgb,var(--wire-color-success)_10%,transparent)] p-3 text-sm text-[var(--wire-color-success)]">{successMessage}</p>
|
|
<button type="submit" class="h-11 w-full rounded-[var(--wire-radius-sm)] bg-[var(--wire-color-primary)] px-4 text-sm font-semibold text-white disabled:cursor-wait disabled:opacity-60">{requestLabel}</button>
|
|
</form>
|
|
|
|
<form
|
|
method="post"
|
|
action='{completeAction}'
|
|
data-schema='{completeSchema}'
|
|
data-auth-otp-complete
|
|
novalidate
|
|
class='mt-6 space-y-4 {challengeId == "" ? "hidden" : ""}'
|
|
>
|
|
<input type="hidden" name="challengeId" value='{challengeId}' />
|
|
<input type="hidden" name="returnTo" value='{returnTo}' />
|
|
<div class="space-y-1.5">
|
|
<label for="auth-otp-code" class="block text-sm font-medium">One-time code</label>
|
|
<input id="auth-otp-code" name="code" inputmode="numeric" autocomplete="one-time-code" maxlength="6" class="h-12 w-full rounded-[var(--wire-radius-sm)] border border-[var(--wire-color-border)] bg-[var(--wire-color-surface-2)] px-3 text-center text-xl tracking-[0.35em] outline-none focus:border-[var(--wire-color-primary)]" />
|
|
<p data-error="code" class="m-0 min-h-4 text-xs text-[var(--wire-color-danger)]"></p>
|
|
</div>
|
|
<p data-error="challengeId" class="m-0 min-h-4 text-xs text-[var(--wire-color-danger)]"></p>
|
|
<p data-error="_form" role="alert" class="m-0 hidden rounded-[var(--wire-radius-sm)] bg-[color-mix(in_srgb,var(--wire-color-danger)_10%,transparent)] p-3 text-sm text-[var(--wire-color-danger)]"></p>
|
|
<button type="submit" class="h-11 w-full rounded-[var(--wire-radius-sm)] bg-[var(--wire-color-primary)] px-4 text-sm font-semibold text-white disabled:cursor-wait disabled:opacity-60">{verifyLabel}</button>
|
|
<button type="button" data-auth-otp-back class="w-full text-sm text-[var(--wire-color-primary)] hover:underline">Use a different account</button>
|
|
</form>
|
|
</section>
|
|
}
|
|
}
|