23 lines
887 B
Plaintext
23 lines
887 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="<%= config.language %>
|
|
<head>
|
|
<%- include("../partials/head") %>
|
|
</head>
|
|
<body>
|
|
<form action="/submit_edit_user" method="POST">
|
|
<input name="userID" type="hidden" value="<%= userID %>">
|
|
<label><%= locale.password %>:</label><br/>
|
|
<input type="password" required id="password" name="password"><br/><br/>
|
|
|
|
<label><%= locale.prettyname %>:</label><br/>
|
|
<input name="prettyname" value="<%= user.prettyname %>"><br/><br/>
|
|
|
|
<label><%= locale.description %>:</label><br/>
|
|
<textarea name="description"><%= user.description %></textarea><br/><br/>
|
|
|
|
<label><%- locale.delete_account_confirmation %>: </label><input type="checkbox" name="agreement"><br/>
|
|
<input type="submit" value="Submit"><br/>
|
|
</form>
|
|
</body>
|
|
</html>
|