rDrama/files/templates/errors/429.html

20 lines
503 B
HTML
Raw Normal View History

2021-07-21 01:12:26 +00:00
{% extends "errors/default.html" %}
{% block title %}
<title>429 Too Many Requests</title>
{% endblock %}
{% block pagetype %}error-429{% 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-tornado text-muted mb-5" style="font-size: 5rem;"></i>
<h1 class="h5">429 Too Many Requests</h1>
2021-07-24 20:50:47 +00:00
<p class="text-muted mb-5">go spam somewhere else nerd</p>
2021-07-21 01:12:26 +00:00
</div>
</div>
</div>
2021-07-24 20:50:47 +00:00
{% endblock %}