salvagedb_web/templates/rate_limit.html

23 lines
1004 B
HTML

{% extends "head.html" %}
{% block title %}Rate Limit Exceeded{% endblock %}
{% block content %}
<div class="container-lg py-4">
<div class="p-5 mb-4 bg-light rounded-3">
<div class="text-center">
<i class="fas fa-exclamation-triangle text-warning" style="font-size: 4rem;"></i>
<h1 class="display-4 mt-3">Rate Limit Exceeded</h1>
<p class="lead">
We've noticed that you're using our service very frequently. Such frequent checks are typically associated with business usage, which contradicts our principles of providing free vehicle history checks for individual users.
</p>
<p class="lead">
Please try again later or use our Telegram bot.
</p>
<div class="text-center mt-3 mb-3">
<img src="/static/qr_telegram2.png" class="img-fluid" alt="Telegram Bot QR Code" style="max-width: 400px;">
</div>
</div>
</div>
</div>
{% endblock %}