blob: 08ac1cdd5e86d16a0c5993ecbc546c7088d6dd19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<div class='sets'>
<h4>Settings</h4>
<ul>
<li><a href='/account/<%= usr._id %>/bio/edit'>Edit Bio</a></li>
<li><a href='/account/<%= usr._id %>/saved'>Saved Recipes</a></li>
<li><a href='/account/<%= usr._id %>/changepass'>Change Password</a></li>
<li>
<form action="/account/<%= usr._id %>?_method=DELETE" method='POST'>
<button style='background-color: rgba(255,255,255,0); border: none; padding: 0; color: blueviolet; font-size: medium;'>
Delete Account
</button>
</form>
</li>
</ul>
</div>
|