21 lines
616 B
Plaintext
21 lines
616 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Change Password</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<%- include('partials/nav') %>
|
|
<div class="content">
|
|
<h1>Change Password</h1>
|
|
<form id="editor" method="POST" action="/changepassword">
|
|
Old Password:<input type="password" name="password0"><br>
|
|
New Password:<input type="password" name="password1"><br>
|
|
Repeat New Password:<input type="password" name="password2"><br>
|
|
<button id="Submit" type="submit">Change Password</button>
|
|
<br>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|