pyfedi/app/templates/chat/denied.html

22 lines
788 B
HTML
Raw Normal View History

2024-02-19 15:01:53 +13:00
{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %}
{% extends 'themes/' + theme() + '/base.html' %}
{% else %}
{% extends "base.html" %}
2024-12-10 12:16:52 +01:00
{% endif %}
2024-02-19 15:01:53 +13:00
{% from 'bootstrap/form.html' import render_form %}
2024-02-19 16:21:49 +13:00
{% set active_child = 'chats' %}
2024-02-19 15:01:53 +13:00
{% block app_content %}
<div class="row">
<div class="col col-login mx-auto">
<div class="card mt-5">
<div class="card-body p-6">
<div class="card-title">{{ _('Sorry') }}</div>
<div class="card-body">
<p>{{ _('You have not been using PieFed long enough to be allowed to send messages to people.') }}</p>
</div>
</div>
</div>
</div>
</div>
{% endblock %}