rDrama/files/templates/userpage/private.html

16 lines
580 B
HTML

{% extends "userpage/userpage.html" %}
{% block userpage_content %}
<div class="row justify-content-center userpage-private">
<div class="col-10 col-md-5">
<div class="text-center px-3 my-3">
<span class="fa-stack fa-2x text-muted mb-4">
<i class="fas fa-square text-gray-500 opacity-25 fa-stack-2x"></i>
<i class="fas text-gray-500 fa-user-lock fa-stack-1x text-lg"></i>
</span>
<h5>This account is private</h5>
<p class="text-muted">This user has enabled private mode to cloak their posting history.</p>
</div>
</div>
</div>
{% endblock %}