12 lines
328 B
HTML
12 lines
328 B
HTML
{% extends 'layouts/app.html' %}
|
|
|
|
{% block title %}You have been temporarily rate limited{% endblock %}
|
|
{% block heading %}<h2>You have been temporarily rate limited</h2>{% endblock %}
|
|
|
|
{% block body %}
|
|
<p>
|
|
Easy there killer. You're trying to access this resource too quickly.
|
|
Try again shortly.
|
|
</p>
|
|
{% endblock %}
|