rDrama/files/templates/errors/nsfw.html

28 lines
865 B
HTML
Raw Normal View History

2021-09-25 23:13:14 +00:00
{% extends "default.html" %}
2021-07-21 01:12:26 +00:00
{% 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">
2021-09-29 15:42:28 +00:00
<img loading="lazy" src="/assets/images/emojis/marseytwerking.webp">
2021-07-21 01:12:26 +00:00
<h1 class="h5">Are you over 18?</h1>
2021-08-29 03:53:27 +00:00
<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>
2021-07-21 01:12:26 +00:00
<div class="btn-toolbar justify-content-center mb-4">
2021-07-26 17:47:52 +00:00
<form action="/allow_nsfw" method="post">
<input type="hidden" name="redir" value="{{request.path}}">
<input type="submit" class="btn btn-danger mr-2" value="Yes, I am +18">
</form>
2021-07-21 01:12:26 +00:00
<div><a href="/" class="btn btn-secondary">No</a></div>
</div>
</div>
</div>
</div>
{% endblock %}