diff options
author | root <root@vagrantz.xyz> | 2021-04-06 10:57:50 +0000 |
---|---|---|
committer | root <root@vagrantz.xyz> | 2021-04-06 10:57:50 +0000 |
commit | 8170d5bc0544fbc02155b8b57751cd1dec33dd69 (patch) | |
tree | d5cffb086fe6d5585c1e00ea5d5d2d907e6d2cd6 /views/account/changepass.ejs |
Diffstat (limited to 'views/account/changepass.ejs')
-rw-r--r-- | views/account/changepass.ejs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/views/account/changepass.ejs b/views/account/changepass.ejs new file mode 100644 index 0000000..25dc1fe --- /dev/null +++ b/views/account/changepass.ejs @@ -0,0 +1,25 @@ +<%- include('../partials/header') %> +<%- include('../partials/nav') %> + +<div class='content'> + <%- include('../partials/settings') %> + <div class='main'> + <div class='logCard'> + <h4 style='text-align: center;'>Edit Bio</h4> + <div class='fff'> + <form id='logform' action="/account/<%= usr._id %>/changepass" method='POST'> + <label for="">Old Password:</label> + <input type="password" name='oldpassword'> + <label for="">New Password:</label> + <input type="password" name='newpassword'> + <button><i class='fas fa-edit'></i></button> + </form> + </div> + </div> + </div> + <%- include('../partials/bio') %> +</div> + +<%- include('../partials/magicSets') %> +<%- include('../partials/magicBio') %> +<%- include('../partials/footer') %> |