Skip to content

Commit

Permalink
fixed auth pages
Browse files Browse the repository at this point in the history
  • Loading branch information
paynejacob committed Jul 15, 2015
1 parent 12ee303 commit 6b61527
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Application/templates/auth/change-password.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% block content %}
<h1>Change Password</h1>
<div class="col-md-6 col-md-push-3 well well-lg top-buffer-lg">
<form id="changePasswordForm" class="form form-change-password" method="POST" action="" role="form">
<form id="changePasswordForm" class="form form-change-password" method="POST" action="/auth/change-password/" role="form">
{{ form.hidden_tag() }}
<div class="form-group">
{{form.old.label}}
Expand Down
3 changes: 1 addition & 2 deletions Application/templates/auth/user-add.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% block content %}
<h1>Create User</h1>
<div class="col-md-6 col-md-push-3 well well-lg top-buffer-lg">
<form id="createUserForm" class="form form-create-user" method="POST" action="" role="form">
<form id="createUserForm" class="form form-create-user" method="POST" action="/auth/users/add" role="form">
{{ form.hidden_tag() }}
<div class="form-group">
{{form.username.label}}
Expand All @@ -29,4 +29,3 @@ <h1>Create User</h1>
</form>
</div>
{% endblock %}

2 changes: 1 addition & 1 deletion Application/templates/auth/user-edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% block content %}
<h1>Edit User</h1>
<div class="col-md-6 col-md-push-3 well well-lg top-buffer-lg" style="padding-left: 10px; padding-right: 10px;">
<form id="editUserForm" class="form form-edit-user" method="POST" action="" role="form">
<form id="editUserForm" class="form form-edit-user" method="POST" action="/auth/users/{{ user.id }}" role="form">
{{ form.hidden_tag() }}
<div class="col-xs-12">
<div class="form-group">
Expand Down

0 comments on commit 6b61527

Please sign in to comment.