mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-13 21:49:26 +02:00

* Change app link to not use heading * Use main and h1 for main content * Update settings page structure * Fix responsive styles * Update bookmark form page structure * Update auth page structure * Add some basic page titles * Expose side panel section * Add page title for bookmark details * Expose more sections * Improve region names
20 lines
490 B
HTML
20 lines
490 B
HTML
{% extends 'bookmarks/layout.html' %}
|
|
{% load widget_tweaks %}
|
|
|
|
{% block head %}
|
|
{% with page_title="Password changed - 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">Password Changed</h1>
|
|
</div>
|
|
<p class="text-success">
|
|
Your password was changed successfully.
|
|
</p>
|
|
</main>
|
|
{% endblock %}
|