Files
tecvico-website/templates/socialaccount/login_redirect.html
T
2026-07-19 14:31:28 +03:30

24 lines
790 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block title %}Redirecting to {{ provider }}{% endblock %}
{% block content %}
<section class="section">
<div class="container container--narrow">
<div class="glass-card portal-card fade-in social-oauth-redirect">
<div class="social-oauth-spinner" aria-hidden="true"></div>
<h1 class="contact-form-title">Redirecting to {{ provider }}</h1>
<p class="portal-intro">{% trans "Please wait while we connect you securely." %}</p>
<p class="portal-footer-text">
<a href="{{ redirect_to }}" class="portal-link">{% trans "Continue manually" %}</a>
</p>
</div>
</div>
</section>
{% endblock %}
{% block extra_js %}
<script>window.location.replace("{{ redirect_to|escapejs }}");</script>
{% endblock %}