Admin Profile

Manage your admin account settings and password

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %}
Security Notice

Important: Changing your password will immediately affect access to all admin functions. Make sure to remember your new password or store it securely.

Change Password & Settings

{{ form.hidden_tag() }}
{{ form.current_password.label(class="form-label") }} {{ form.current_password(class="form-control", placeholder="Enter current password") }} {% if form.current_password.errors %}
{% for error in form.current_password.errors %} {{ error }} {% endfor %}
{% endif %}
{{ form.new_password.label(class="form-label") }} {{ form.new_password(class="form-control", placeholder="Enter new password (min 6 characters)") }} {% if form.new_password.errors %}
{% for error in form.new_password.errors %} {{ error }} {% endfor %}
{% endif %}
{{ form.confirm_password.label(class="form-label") }} {{ form.confirm_password(class="form-control", placeholder="Confirm new password") }} {% if form.confirm_password.errors %}
{% for error in form.confirm_password.errors %} {{ error }} {% endfor %}
{% endif %}
{{ form.email.label(class="form-label") }} {{ form.email(class="form-control", placeholder="admin@example.com") }} {% if form.email.errors %}
{% for error in form.email.errors %} {{ error }} {% endfor %}
{% endif %}
Cancel

Current Profile Information

Username: admin

Email: {{ current_email or 'Not set' }}

Account Type: Administrator

Access Level: Full Admin Rights

Password Requirements

  • Minimum 6 characters
  • Must match confirmation
  • Current password must be correct