forked from MarseyWorld/MarseyWorld
29 lines
902 B
HTML
29 lines
902 B
HTML
{% 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">
|
|
<h5>Are you over 18?</h5>
|
|
<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">
|
|
<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">
|
|
</form>
|
|
<div class="mt-3"><a href="/" class="btn btn-secondary">No</a></div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|