rDrama/files/templates/errors/nsfw.html

23 lines
1023 B
HTML
Raw Normal View History

2022-05-04 23:09:46 +00:00
{% extends "default.html" %}
2023-10-04 14:04:06 +00:00
{% block pagetitle %}NSFW{% endblock %}
2022-05-04 23:09:46 +00:00
{% block pagetype %}error-451{% endblock %}
{% block content %}
<div class="row justify-content-center">
<div class="col col-md-5">
<div class="text-center px-3 mt-3">
<img alt=":#marseytwerking:" loading="lazy" src="{{SITE_FULL_IMAGES}}/e/marseytwerking.webp">
2023-10-05 09:32:23 +00:00
<h5>NSFW Warning</h5>
2023-10-04 14:04:06 +00:00
<p class="mb-3">This post is rated NSFW (Not Safe For Work). Are you sure you want to proceed?</p>
2022-05-04 23:09:46 +00:00
<div class="btn-toolbar justify-content-center mb-4">
2023-08-11 21:50:23 +00:00
<form action="/allow_nsfw" method="post" data-nonce="{{g.nonce}}" data-onsubmit="sendFormXHRReload(this)">
2023-01-24 05:10:16 +00:00
<input hidden name="redir" value="{{request.full_path}}">
2023-10-05 09:32:23 +00:00
<input type="submit" class="btn btn-danger" value="Yes">
2022-05-04 23:09:46 +00:00
</form>
2022-07-15 14:36:07 +00:00
<div class="mt-3"><a href="/" class="btn btn-secondary">No</a></div>
2023-10-05 10:19:50 +00:00
<div class="mt-5"><a href="/settings/advanced#nsfw_toggle" class="btn btn-secondary">Never show me this warning again</a></div>
2022-05-04 23:09:46 +00:00
</div>
</div>
</div>
</div>
2022-10-28 20:08:32 +00:00
{% endblock %}