mirror of
https://github.com/jech/galene.git
synced 2024-11-09 18:25:58 +01:00
33 lines
970 B
HTML
33 lines
970 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Change password</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="/common.css">
|
|
<link rel="stylesheet" href="/change-password.css">
|
|
<link rel="stylesheet" type="text/css" href="/galene.css"/>
|
|
<link rel="author" href="https://www.irif.fr/~jch/"/>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1 id="title" class="navbar-brand">Change password</h1>
|
|
|
|
<form id="passwordform">
|
|
<label for="old1">Old password:</label>
|
|
<input id="old1" type="password"/>
|
|
<label for="old2">Old password (repeat):</label>
|
|
<input id="old2" type="password"/>
|
|
<label for="new">New password:</label>
|
|
<input id="new" type="password"/>
|
|
<input type="submit" value="Submit"/>
|
|
</form>
|
|
|
|
<p id="message"></p>
|
|
|
|
<p id="errormessage"></p>
|
|
|
|
<script src="/change-password.js" defer></script>
|
|
</body>
|
|
</html>
|