This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
mandaye/mandaye/templates/passord_replay/associate.html

31 lines
899 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="fr-fr" />
<title>1er connexion</title>
</head>
<h3>1er connexion</h3>
% if error_msg:
<p>${error_msg}</p>
% elif description:
<p>${description}</p>
% endif
<form action="${action}" method="post" accept-charset="utf-8">
<div>
<label for="username">${username_label}</label>
<input type="text" name="username" value="" id="username" />
</div>
<div>
<label for="password">${password_label}</label>
<input type="password" name="password" value="" id="password" />
</div>
<p><input type="submit" value="Enregistrer"></p>
</form>
</html>