Skip to content

Commit 9fa9156

Browse files
committed
feat: Redesign social login, authentication error page
1 parent 98412a6 commit 9fa9156

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed
Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
{% extends "socialaccount/base.html" %}
22

3-
{% load i18n %}
3+
{% load static %}
44

5-
{% block head_title %}{% trans "Social Network Login Failure" %}{% endblock %}
5+
{% block head_title %}Social Network Login Failure{% endblock %}
66

7-
{% block content_header %}{% trans "Social Network Login Failure" %}{% endblock %}
7+
{% block header %}{% endblock %}
88

99
{% block content %}
10-
<p>{% trans "An error occurred while attempting to login via your social network account." %}</p>
10+
<div class="w-[40rem] flex flex-col items-center justify-center mx-auto p-8 font-common shadow-sign-content rounded-lg">
11+
<h3>Social Network Login Failure</h3>
12+
<img class="w-42" src="{% static 'img/problem.png' %}"/>
13+
<p class="text-center my-2">An error occurred while attempting to login via your third-party account.</p>
14+
</div>
1115
{% endblock %}
16+
17+
{% block footer %}{% endblock %}

0 commit comments

Comments
 (0)