diff options
Diffstat (limited to 'project/templates/user/editprofile.html')
-rw-r--r-- | project/templates/user/editprofile.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/project/templates/user/editprofile.html b/project/templates/user/editprofile.html new file mode 100644 index 0000000..db9b2c9 --- /dev/null +++ b/project/templates/user/editprofile.html @@ -0,0 +1,28 @@ +{% extends "base.html" %} + +{% block title %}Edit Your Profile{% endblock %} + +{% block content %} + <h1>Edit Your Profile</h1> + + + <form action="{% url scipycon_edit_profile params.scope %}" + enctype="multipart/form-data" + method="post"> + <fieldset> + <legend>Edit Profile</legend> + <table class="scipycon-default"> + {{ form }} + </table> + <input type="hidden" + name="action" + value="email" /> + + <input class="button left" + type="submit" + value="Save Changes" /> + + </fieldset> + </form> +{% endblock %} + |