rDrama/files/templates/userpage_private.html

31 lines
1.1 KiB
HTML
Raw Normal View History

2021-07-21 01:12:26 +00:00
{% extends "userpage.html" %}
{% block content %}
<div class="row justify-content-center">
<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>
<h2 class="h5">This account is private</h2>
<p class="text-muted">This user has enabled private mode to cloak their posting history.</p>
2021-08-31 21:11:15 +00:00
{% if u.id == 253 and 'rdrama' in request.host %}
2021-08-31 21:20:09 +00:00
<a class="btn btn-primary" href="javascript:void(0)", onclick="post('/pay_rent', callback=function(){window.location.reload(true)})">Pay rent to view profile (500 coins)</a>
<pre></pre>
2021-08-31 21:22:33 +00:00
<a class="btn btn-primary" href="javascript:void(0)", onclick="post('/steal', callback=function(){window.location.reload(true)})">Attempt to steal coins</a>
<div class="text-small-extra text-muted mt-1">30% chance of being banned for 1 day, 70% chance of stealing 2000 coins</div>
2021-08-31 21:20:09 +00:00
<pre>
</pre>
2021-08-31 21:11:15 +00:00
{% endif %}
2021-07-21 01:12:26 +00:00
</div>
</div>
</div>
{% endblock %}
2021-08-09 16:29:28 +00:00
{% block pagenav %}{% endblock %}