mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 14:14:18 +00:00
bca9bf9b11
* Replace flexbox grid with CSS grid * Update new and edit forms * Update settings views * Update auth views * Fix margin in menu * Remove unused Spectre modules * Simplify navbar * Reuse CSS variables * Fix grid gap on small screen sizes * Simplify grid system * Improve section headers * Restructure SASS files * Cleanup base styles * Update test
15 lines
389 B
HTML
15 lines
389 B
HTML
{% extends 'bookmarks/layout.html' %}
|
|
{% load widget_tweaks %}
|
|
|
|
{% block title %}Password changed{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="content-area mx-auto width-50 width-md-100">
|
|
<div class="content-area-header">
|
|
<h2>Password Changed</h2>
|
|
</div>
|
|
<p class="text-success">
|
|
Your password was changed successfully.
|
|
</p>
|
|
</section>
|
|
{% endblock %}
|