mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
20 lines
439 B
HTML
20 lines
439 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Login</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<form action="{{ url_for('page_password') }}" method="POST">
|
||
|
<label>
|
||
|
Old password
|
||
|
<input name="old" type="password">
|
||
|
</label>
|
||
|
<label>
|
||
|
New password
|
||
|
<input name="new" type="password">
|
||
|
</label>
|
||
|
<input type="submit">
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|