rDrama/files/templates/userpage_reserved.html

37 lines
880 B
HTML
Raw Normal View History

2021-10-15 14:08:27 +00:00
{% extends "default.html" %}
{% block pagetype %}userpage{% endblock %}
{% block fixedMobileBarJS %}
{% endblock %}
{% block title %}
<title>@{{u.username}}</title>
2021-12-27 05:07:19 +00:00
2021-10-15 14:08:27 +00:00
{% endblock %}
{% block adminpanel %}{% endblock %}
{% block content %}
<div class="row no-gutters">
<div class="col-12">
<div class="text-center py-7 py-md-8">
2022-02-18 21:29:37 +00:00
<i class="fas fa-id-card text-muted mb-5" style="font-size: 5rem;"></i>
2021-10-15 14:08:27 +00:00
<div class="font-weight-bold text-muted">Account Reserved</div>
<div class="text-muted">The username @{{u.username}} has been pre-emptively reserved for: {{u.reserved}}</div>
2022-01-13 23:39:39 +00:00
<div class="text-muted">If that's you, or if you are their authorized representative, please contact {{SITE_NAME}} staff in order to obtain access to this account.</div>
2021-10-15 14:08:27 +00:00
</div>
</div>
</div>
{% endblock %}
{% block pagenav %}
{% endblock %}