rDrama/files/templates/errors/nsfw.html

28 lines
912 B
HTML
Raw Normal View History

2022-05-04 23:09:46 +00:00
{% extends "default.html" %}
{% block title %}
<title>+18</title>
{% endblock %}
{% 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-5">
<img alt=":#marseytwerking:" loading="lazy" src="/e/marseytwerking.webp">
<h1 class="h5">Are you over 18?</h1>
<p class="mb-5">This post is rated +18 (Adult-Only). You must be 18 or older to continue. Are you sure you want to proceed?</p>
<div class="btn-toolbar justify-content-center mb-4">
<form action="/allow_nsfw" method="post">
2022-05-10 02:14:03 +00:00
<input type="hidden" name="redir" value="{{request.full_path}}">
<input type="submit" onclick="disable(this)" 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>
2022-05-04 23:09:46 +00:00
</div>
</div>
</div>
</div>
2021-12-14 22:48:37 +00:00
{% endblock %}