All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 42s
Account is now the OAuth authorization server with magic link login, OAuth2 authorize endpoint, SSO logout, and session management. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
664 B
HTML
20 lines
664 B
HTML
{% extends "_types/root/_index.html" %}
|
|
{% block meta %}{% endblock %}
|
|
{% block title %}Check your email — Rose Ash{% endblock %}
|
|
{% block content %}
|
|
<div class="py-8 max-w-md mx-auto text-center">
|
|
<h1 class="text-2xl font-bold mb-4">Check your email</h1>
|
|
<p class="text-stone-600 mb-2">
|
|
We sent a sign-in link to <strong>{{ email }}</strong>.
|
|
</p>
|
|
<p class="text-stone-500 text-sm">
|
|
Click the link in the email to sign in. The link expires in 15 minutes.
|
|
</p>
|
|
{% if email_error %}
|
|
<div class="bg-yellow-50 border border-yellow-200 text-yellow-700 p-3 rounded mt-4">
|
|
{{ email_error }}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|