8bb247af3b
* Added support for quarantined subreddits * Added confirmation wall for quarantined subreddits * Added quarantine walls to other routes and fixed case issue * Correct obsolete use of cookie() * Refactor param() and quarantine() Co-authored-by: Spike <19519553+spikecodes@users.noreply.github.com>
14 lines
377 B
HTML
14 lines
377 B
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ msg }}{% endblock %}
|
|
{% block sortstyle %}{% endblock %}
|
|
{% block content %}
|
|
<div id="wall">
|
|
<h1>{{ title }}</h1>
|
|
<br>
|
|
<p>{{ msg }}</p>
|
|
<form action="/r/{{ sub }}?redir={{ url }}" method="POST">
|
|
<input id="save" type="submit" value="Continue">
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|