diff options
author | Rodney Ewing <ewing.rj@gmail.com> | 2013-07-08 17:17:12 -0700 |
---|---|---|
committer | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-16 10:28:48 -0700 |
commit | af665c4eb9dfb53ef9ac28567f7f3806ed313093 (patch) | |
tree | e82d356f4c89cb04cb4b5c469ba45a3685e1eb56 /mediagoblin/templates | |
parent | aeae6cc29099c4bea84bbfd006615104ba719b1e (diff) | |
download | mediagoblin-af665c4eb9dfb53ef9ac28567f7f3806ed313093.tar.lz mediagoblin-af665c4eb9dfb53ef9ac28567f7f3806ed313093.tar.xz mediagoblin-af665c4eb9dfb53ef9ac28567f7f3806ed313093.zip |
moved change_pass to basic_auth and fixed some typos with the moving of forgot pass
Diffstat (limited to 'mediagoblin/templates')
-rw-r--r-- | mediagoblin/templates/mediagoblin/edit/change_pass.html | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/mediagoblin/templates/mediagoblin/edit/change_pass.html b/mediagoblin/templates/mediagoblin/edit/change_pass.html deleted file mode 100644 index 2a1ffee0..00000000 --- a/mediagoblin/templates/mediagoblin/edit/change_pass.html +++ /dev/null @@ -1,52 +0,0 @@ -{# -# GNU MediaGoblin -- federated, autonomous media hosting -# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS. -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. -#} -{% extends "mediagoblin/base.html" %} - -{% import "/mediagoblin/utils/wtforms.html" as wtforms_util %} - -{% block mediagoblin_head %} - <script type="text/javascript" - src="{{ request.staticdirect('/js/show_password.js') }}"></script> -{% endblock mediagoblin_head %} - -{% block title -%} - {% trans username=user.username -%} - Changing {{ username }}'s password - {%- endtrans %} — {{ super() }} -{%- endblock %} - -{% block mediagoblin_content %} - <form action="{{ request.urlgen('mediagoblin.edit.pass') }}" - method="POST" enctype="multipart/form-data"> - <div class="form_box edit_box"> - <h1> - {%- trans username=user.username -%} - Changing {{ username }}'s password - {%- endtrans -%} - </h1> - {{ wtforms_util.render_divs(form, True) }} - {{ csrf_token }} - <div class="form_submit_buttons"> - <input type="submit" value="{% trans %}Save{% endtrans %}" - class="button_form" /> - </div> - </div> - </form> -{% endblock %} - - |