15 lines
555 B
HTML
15 lines
555 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Edit profile{% endblock %}
|
|
{% block content %}
|
|
<div class="max-w-5xl mx-auto p-4 sm:p-6">
|
|
<div class="mb-8">
|
|
<h1 class="text-3xl font-bold text-gray-900">Edit your profile</h1>
|
|
<p class="mt-2 text-gray-600">Manage your profile and account settings.</p>
|
|
</div>
|
|
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
|
|
{% include "edit/update_profile.html" %}
|
|
{% include "edit/change_password.html" %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|