Allow the admin user to edit themself

This commit is contained in:
Melon 2024-02-13 21:15:18 +00:00
parent ef55d260de
commit 0f37976d35
Signed by: melon
GPG Key ID: 6C9D970C50D26A25

View File

@ -68,19 +68,15 @@
<th>{{.UpdatedAt}}</th> <th>{{.UpdatedAt}}</th>
<td>{{.Active}}</td> <td>{{.Active}}</td>
<td> <td>
{{if eq $.CurrentAdmin .Sub}} <form method="GET" action="/manage/users">
<span></span> <input type="hidden" name="offset" value="{{$.Offset}}"/>
{{else}} <input type="hidden" name="edit" value="{{.Sub}}"/>
<form method="GET" action="/manage/users"> <button type="submit">Edit</button>
<input type="hidden" name="offset" value="{{$.Offset}}"/> </form>
<input type="hidden" name="edit" value="{{.Sub}}"/> <form method="POST" action="/reset-password">
<button type="submit">Edit</button> <input type="hidden" name="email" value="{{.Email}}"/>
</form> <button type="submit">Send Reset Password Email</button>
<form method="POST" action="/reset-password"> </form>
<input type="hidden" name="email" value="{{.Email}}"/>
<button type="submit">Send Reset Password Email</button>
</form>
{{end}}
</td> </td>
</tr> </tr>
{{end}} {{end}}