28 lines
879 B
HTML
28 lines
879 B
HTML
{% extends "errors/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">
|
|
<i class="fad fa-eye-evil text-danger mb-4" style="font-size: 3.5rem;"></i>
|
|
<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">
|
|
<input type="hidden" name="redir" value="{{request.path}}">
|
|
<input type="submit" class="btn btn-danger mr-2" value="Yes, I am +18">
|
|
</form>
|
|
<div><a href="/" class="btn btn-secondary">No</a></div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |