forked from enviPath/enviPy
All html files now prettier formatted and fixes for incompatible blocks applied Co-authored-by: Tim Lorsbach <tim@lorsba.ch> Reviewed-on: enviPath/enviPy#193 Co-authored-by: Tobias O <tobias.olenyi@envipath.com> Co-committed-by: Tobias O <tobias.olenyi@envipath.com>
83 lines
2.2 KiB
HTML
83 lines
2.2 KiB
HTML
{% load static %}
|
|
<!-- Edit Package -->
|
|
<div id="edit_password_modal" class="modal" tabindex="-1">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title">Update your Password</h5>
|
|
<button
|
|
type="button"
|
|
class="close"
|
|
data-dismiss="modal"
|
|
aria-label="Close"
|
|
>
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p>To change your password please fill out the following inputs</p>
|
|
<form
|
|
id="edit-password-modal-form"
|
|
accept-charset="UTF-8"
|
|
action=""
|
|
data-remote="true"
|
|
method="post"
|
|
>
|
|
{% csrf_token %}
|
|
<p>
|
|
<label for="old-password">Old Password</label>
|
|
<input
|
|
id="old-password"
|
|
class="form-control"
|
|
name="old-password"
|
|
type="password"
|
|
autocomplete="current-password"
|
|
/>
|
|
</p>
|
|
<p>
|
|
<label for="new-password">New Password</label>
|
|
<input
|
|
id="new-password"
|
|
class="form-control"
|
|
name="new-password"
|
|
type="password"
|
|
,
|
|
autocomplete="new-password"
|
|
/>
|
|
</p>
|
|
<p>
|
|
<label for="new-password-repeat">Repeat New Password</label>
|
|
<input
|
|
id="new-password-repeat"
|
|
class="form-control"
|
|
name="new-password-repeat"
|
|
type="password"
|
|
autocomplete="new-password"
|
|
/>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">
|
|
Close
|
|
</button>
|
|
<button
|
|
type="button"
|
|
class="btn btn-primary"
|
|
id="edit-password-modal-submit"
|
|
>
|
|
Update
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
$(function () {
|
|
$("#edit-password-modal-submit").click(function (e) {
|
|
e.preventDefault();
|
|
$("#edit-password-modal-form").submit();
|
|
});
|
|
});
|
|
</script>
|