Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/sentry/templates/sentry/idp_account_not_verified.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{% extends "sentry/emails/base.html" %}
{% extends "sentry/bases/auth.html" %}

{% load i18n %}

{% block main %}
{% block auth_main %}
<h3>Sorry,</h3>
<p>
Something went wrong and your email could not be confirmed. Click the button below to go back to the login page.
</p>

<a href="/auth/login/" class="btn">Go back</a>
<a href="/auth/login/" class="btn btn-primary">Go back</a>
{% endblock %}
4 changes: 2 additions & 2 deletions src/sentry/templates/sentry/idp_account_verified.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{% extends "sentry/emails/base.html" %}
{% extends "sentry/bases/auth.html" %}

{% load i18n %}

{% block main %}
{% block auth_main %}
<h3>Thank you!</h3>
<p>
Your email has been confirmed. Click the button below to log in to your Sentry account.
Expand Down
Loading