forked from rDrama/rDrama
1
0
Fork 0
rDrama/drama/templates/errors/405.html

20 lines
642 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

{% extends "default.html" %}
{% block title %}
<title>405 Method Not Allowed</title>
{% endblock %}
{% block pagetype %}error-405{% endblock %}
{% block content %}
<div class="row justify-content-center">
<div class="col-10 col-md-5">
<div class="text-center px-3 my-8">
<i class="fad fa-ban text-muted mb-5" style="font-size: 5rem;"></i>
<h1 class="h5">405 Method Not Allowed</h1>
<p class="text-muted mb-5">Careful, stranger. The internet gnomes dont take kindly to outsiders that dont follow their customs.</p>
<div><a href="/" class="btn btn-primary">Go to frontpage</a></div>
</div>
</div>
</div>
{% endblock %}