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