31 lines
782 B
HTML
31 lines
782 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Change Password | Vanikam</title>
|
|
</head>
|
|
<body>
|
|
|
|
<form action="/owner/user/password/change" method="post">
|
|
<label for="current_password">
|
|
Current password
|
|
<input type="password" name="current_password" id="current_password">
|
|
</label>
|
|
|
|
<label for="new_password">
|
|
New password
|
|
<input type="password" name="new_password" id="new_password">
|
|
</label>
|
|
|
|
<label for="confirm_new_password">
|
|
Confirm new password
|
|
<input type="password" name="confirm_new_password" id="confirm_new_password">
|
|
</label>
|
|
|
|
|
|
<button type="submit">Change password</button>
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|