53 lines
2.3 KiB
Twig
53 lines
2.3 KiB
Twig
{#
|
||
organizations/invitation_expired.twig - Страница истёкшего/недействительного приглашения
|
||
#}
|
||
{% extends 'layouts/landing.twig' %}
|
||
|
||
{% block title %}{{ title }}{% endblock %}
|
||
|
||
{% block content %}
|
||
<div class="min-vh-100 d-flex align-items-center justify-content-center py-5" style="background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);">
|
||
<div class="container">
|
||
<div class="row justify-content-center">
|
||
<div class="col-md-6 col-lg-5">
|
||
<div class="card shadow-lg border-0">
|
||
<div class="card-body p-5 text-center">
|
||
<div class="mb-4">
|
||
<i class="fa-solid fa-triangle-exclamation text-warning" style="font-size: 4rem;"></i>
|
||
</div>
|
||
|
||
<h3 class="mb-3">{{ title }}</h3>
|
||
|
||
<p class="text-muted mb-4">
|
||
Это приглашение недействительно или уже было обработано.<br>
|
||
Возможно, оно истекло или было отозвано отправителем.
|
||
</p>
|
||
|
||
{% if expired and expired_at %}
|
||
<div class="alert alert-info mb-4">
|
||
<i class="fa-solid fa-clock me-2"></i>
|
||
Приглашение истекло {{ expired_at|date("d.m.Y в H:i") }}
|
||
</div>
|
||
{% endif %}
|
||
|
||
<div class="d-grid gap-2">
|
||
<a href="/" class="btn btn-primary">
|
||
<i class="fa-solid fa-home me-2"></i>На главную
|
||
</a>
|
||
<a href="/login" class="btn btn-outline-secondary">
|
||
<i class="fa-solid fa-sign-in-alt me-2"></i>Войти в аккаунт
|
||
</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
{# Футер #}
|
||
<div class="text-center mt-4 text-white-50 small">
|
||
© {{ "now"|date("Y") }} Бизнес.Точка
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
{% endblock %}
|