18 lines
731 B
HTML
18 lines
731 B
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ t('Method Not Allowed') }} - {{ t('Your Business Name') }}{% endblock %}
|
|
{% block content %}
|
|
<section class="py-5">
|
|
<div class="container text-center">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8">
|
|
<div class="error-page">
|
|
<h1 class="display-1 fw-bold text-muted">405</h1>
|
|
<h2 class="display-6 fw-bold mb-4">{{ t('Method Not Allowed') }}</h2>
|
|
<p class="lead text-muted mb-4">{{ t('The method used for this request is not allowed.') }}</p>
|
|
<a href="{{ url_for('index') }}" class="btn btn-primary btn-lg">{{ t('Go to Homepage') }}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock %} |