mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-07-31 20:59:44 +00:00

remove ckeditor - not in use add more strict default password validators set Django admin as configurable URL add nginx HSTS and CSP headers enable moving from private to unlisted in the PORTAL_WORKFLOW private on default comments listing, show only comments for public media in case of a private media, dont expose any unneeded metadata
18 lines
474 B
HTML
18 lines
474 B
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
{% block headtitle %}Edit profile - {% endblock headtitle %}
|
|
|
|
{% block innercontent %}
|
|
|
|
<div class="user-action-form-wrap">
|
|
<div class="user-action-form-inner">
|
|
<h1>Edit Profile</h1>
|
|
<form enctype="multipart/form-data" action="" method="post" class="post-form">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button class="primaryAction" type="submit">Update Profile</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock innercontent %}
|