rDrama/files/templates/errors/413.html
2022-05-18 20:05:12 -05:00

20 lines
487 B
HTML

{% extends "default.html" %}
{% block title %}
<title>Max file size is 8 MB</title>
{% endblock %}
{% block pagetype %}error-413{% endblock %}
{% block content %}
<div class="row justify-content-center">
<div class="col-10 col-md-5">
<div class="text-center px-3 my-8">
<h1>413</h1>
<h5>Payload Too Large</h5>
<p class="text-muted mb-5">Max file size is 8 MB</p>
<div><a href="/" class="btn btn-primary">Go to frontpage</a></div>
</div>
</div>
</div>
{% endblock %}