rDrama/files/templates/errors/413.html

21 lines
651 B
HTML

{% extends "errors/default.html" %}
{% block title %}
<title>413 Request Entity Too Large</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">
<i class="fad fa-mountain text-muted mb-5" style="font-size: 5rem;"></i>
<h1 class="h5">413 Image Size Too Large</h1>
<p class="text-muted mb-5">There's a 1 MB limit to profile picture uploads, and a 16 MB limit to all other image uploads.</p>
<div><a href="/" class="btn btn-primary">Go to frontpage</a></div>
</div>
</div>
</div>
{% endblock %}