mirror of
https://github.com/redstrate/Kawari.git
synced 2025-04-26 08:37:44 +00:00
19 lines
462 B
HTML
19 lines
462 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Kawari - Change Password</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<form method='post'>
|
||
|
<label for="old_password">Old Password:</label><br>
|
||
|
<input type='text' id='old_password' name='old_password'/><br>
|
||
|
<label for="new_password">New Password:</label><br>
|
||
|
<input type='text' id='new_ppassword' name='new_password'/><br>
|
||
|
<button type='submit'>Submit</button>
|
||
|
</form>
|
||
|
|
||
|
</body>
|
||
|
</html>
|