mirror of
https://github.com/kevin-DL/ShortMe-URL-Shortener.git
synced 2026-01-11 11:04:28 +00:00
28 lines
1019 B
HTML
28 lines
1019 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
|
|
<body>
|
|
|
|
<div>
|
|
<div class="row">
|
|
<div class="col-md-10 offset-md-1">
|
|
<div class="card m-auto" style="max-width:850px">
|
|
<div class="card-body">
|
|
<h2>🌴 404</h2>
|
|
<h4><strong>We could not find this page 🙁</strong><br></h4>
|
|
<p></p>
|
|
|
|
<a href="{{ url_for('index_blueprint.index') }}">
|
|
<button class="btn btn-primary" id="go-home" type="button"
|
|
style="width: 200px;height: 51px;background-color: rgb(41,41,41);transition: border 0.2s ease;">
|
|
Go back HOME
|
|
</button>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
{% endblock %} |