pflaenz.li/pflaenzli/pflaenzli/templates/user/detail.html

18 lines
551 B
HTML
Raw Normal View History

2023-02-19 21:37:53 +01:00
{% extends 'base.html' %}
{% block title %}User{% endblock %}
{% block content %}
<h1 class="mb-4">
User details <span class="badge bg-secondary">{{ user.username }}</span>
</h1>
<div class="mb-5">
<h2>Settings</h2>
<button type="button" class="btn btn-pfl">Change Password</button>
</div>
<div class="mb-3">
<h2>Delete Account</h2>
<button class="btn btn-danger">
<i class="me-1 fa-regular fa-triangle-exclamation"></i>Delete Account
</button>
</div>
{% endblock %}