Files
mobilizon-frontend/tests/unit/specs/views/User/__snapshots__/resendConfirmation.spec.ts.snap

51 lines
2.3 KiB
Plaintext

// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`ResendConfirmation > Show simple 1`] = `
"<section class="container mx-auto pt-4 max-w-2xl">
<h1>Resend confirmation email</h1>
<!--v-if-->
<form>
<div data-oruga="field" class="o-field"><label id="v-0" for="emailAddress" class="o-field__label">Email address</label>
<div data-oruga="input" class="o-input o-input--expanded">
<!----><input aria-labelledby="v-0" aria-required="true" required="" id="emailAddress" type="email" data-oruga-input="email" class="o-input__input o-input__input--placeholder" autocomplete="off">
<!---->
<!---->
</div>
<!---->
</div>
<p class="flex flex-wrap gap-1 mt-2"><button data-oruga="button" type="submit" role="button" tabindex="0" class="o-button o-button--primary"><span class="o-button__wrapper"><!----><span class="o-button__label">Send the confirmation email again</span>
<!----></span>
</button><a href="/login" class="o-button o-button--outlined-primary" data-oruga="button" role="button" tabindex="0"><span class="o-button__wrapper"><!----><span class="o-button__label">Cancel</span>
<!----></span>
</a></p>
</form>
</section>"
`;
exports[`ResendConfirmation > Show simple 2`] = `
"<section class="container mx-auto pt-4 max-w-2xl">
<h1>Resend confirmation email</h1>
<!--v-if-->
<div>
<transition-stub name="fade" appear="false" persisted="false" css="true">
<article closable="false" title="Success" data-oruga="notification" class="o-notification o-notification--success o-notification--top">
<!---->
<div class="o-notification__wrapper">
<!---->
<div class="o-notification__content">If an account with this email exists, we just sent another confirmation email to some@email.tld</div>
</div>
</article>
</transition-stub>
<transition-stub name="fade" appear="false" persisted="false" css="true">
<article class="mt-2 o-notification o-notification--info o-notification--top" data-oruga="notification">
<!---->
<div class="o-notification__wrapper">
<!---->
<div class="o-notification__content">Please check your spam folder if you didn't receive the email.</div>
</div>
</article>
</transition-stub>
</div>
</section>"
`;