blob: ab15a4afed695bdc2f1c57286cd1a2e89bc5031c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<%- include('header', { title: "Change password" }) %>
<form action="/change_password" method="post">
<p>
Name: <%= user.name %>
<p>
Mail: <%= user.mail %>
<p>
<label for="password">Old Password: </label><br>
<input type="password" id="password" name="password" required>
<p>
<label for="newpass">New Password: </label><br>
<input type="password" id="newpass" name="newpass" required>
<p>
<button type="submit">Change password</button>
</form>
|