15 lines
240 B
HTML
15 lines
240 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<style>
|
|
.container {
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
|
|
<div class="container">
|
|
<h1>> Ratelimit exceeded:</h1>
|
|
<h1 style="color:#ffffff;">{{ error_message }}</h1>
|
|
</div>
|
|
|
|
{% endblock %}
|