mirror of
https://github.com/sissbruecker/linkding.git
synced 2026-02-28 06:53:12 +08:00
13 lines
443 B
HTML
13 lines
443 B
HTML
{% extends 'shared/layout.html' %}
|
|
{% block head %}
|
|
{% with page_title="Registration complete - Linkding" %}{{ block.super }}{% endwith %}
|
|
{% endblock %}
|
|
{% block content %}
|
|
<main class="mx-auto width-50 width-md-100" aria-labelledby="main-heading">
|
|
<div class="section-header">
|
|
<h1 id="main-heading">Registration complete</h1>
|
|
</div>
|
|
<p class="text-success">You can now use the application.</p>
|
|
</main>
|
|
{% endblock %}
|