blob: 25dc1febb573d420d91a9bcb5213cae4a8317240 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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') %>
|