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 %}
|
2023-10-29 12:51:00 +00:00
|
|
|
<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">
|
|
|
|
<h5>NSFW Warning</h5>
|
|
|
|
<p class="mb-3">This post is rated NSFW (Not Safe For Work). Are you sure you want to proceed?</p>
|
|
|
|
<div class="btn-toolbar justify-content-center mb-4">
|
|
|
|
<form action="/allow_nsfw" method="post" data-nonce="{{g.nonce}}" data-onsubmit="sendFormXHRReload(this)">
|
|
|
|
<input hidden name="redir" value="{{request.full_path}}">
|
|
|
|
<input type="submit" class="btn btn-danger" value="Yes">
|
|
|
|
</form>
|
|
|
|
<div class="mt-3"><a href="/" class="btn btn-secondary">No</a></div>
|
|
|
|
<div class="mt-5"><a href="/settings/advanced#nsfw_toggle" class="btn btn-secondary">Never show me this warning again</a></div>
|
|
|
|
</div>
|
2022-05-04 23:09:46 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-10-28 20:08:32 +00:00
|
|
|
{% endblock %}
|