rDrama/files/templates/errors/nsfw.html

25 lines
990 B
HTML
Raw Normal View History

2022-05-04 23:09:46 +00:00
{% extends "default.html" %}
2022-11-19 22:20:38 +00:00
{% block pagetitle %}+18{% 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">
2022-05-04 23:09:46 +00:00
<img alt=":#marseytwerking:" loading="lazy" src="/e/marseytwerking.webp">
2022-10-29 00:52:11 +00:00
<h5>Are you over 18?</h5>
<p class="mb-3">This post is rated +18 (Adult-Only). You must be 18 or older to continue. 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">
<form action="/allow_nsfw" method="post">
2023-01-24 05:10:16 +00:00
<input hidden name="redir" value="{{request.full_path}}">
2023-03-07 00:21:08 +00:00
<input type="submit" class="btn btn-danger mr-2" value="Yes, I am +18">
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>
<div class="mt-5"><a href="/settings/advanced#over_18_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 %}