<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Connexion preferences</title>
</head>
<body>
<form id="changepass" method="POST">
<fieldset>
<p><input type="text" id="pseudo" name="pseudo" placeholder="pseudo" />
<input type="text" id="name" name="name" placeholder="name" />
<input type="password" id="password" name="password" placeholder="old password" /></p><p>
<input type="password" id="newpassword" name="newpassword" placeholder="New password" /></p><p>
<input type="submit" value="modify" />
</p><div id="manage" ></div>
</fieldset></form>
<script src="jquery.js"></script>
<script src="jquery.showmypwd.js"></script>
<script>
$(document).ready(function(){
$("changepass").showmypwd(
//{
//"passwordfield":"#newpassword",
//"img_src": "show.jpg",
//"img_alt": "show the password",
//"img_id": "showpass",
//"callback": null,
//}
);
});
</script>
</body>
</html>
|