LaFactoriaVerde_Web/pass_change.html
2010-10-07 15:54:59 +00:00

44 lines
1.3 KiB
HTML

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Language" content="es-ES" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Cambiar la contraseña</title>
<script language="JavaScript" type="text/javascript">
//<![CDATA[
<!--
function Form1_Validator(theForm)
{
if (theForm.p_word.value != theForm.password2.value)
{
alert("Las dos contraseñas introducidas no coinciden. Revíselo.");
theForm.password2.focus();
return (false);
}
}
//-->
//]]>
</script>
<style type="text/css">
/*<![CDATA[*/
p.c4 {font-family: Tahoma}
span.c3 {font-size: 80%}
p.c2 {font-weight: bold}
span.c1 {font-family: Tahoma}
/*]]>*/
</style>
</head>
<body>
<h1>Cambio de la contraseña</h1>
<form method="post" action="pass_change.php" onSubmit="return Form1_Validator(this)" language="JavaScript" name="Form1">
<p class="c4"><span class="c3">Nueva contraseña:<br /></span> <input type="password"
name="p_word" size="20" /><span class="c3"><br />
Confirmar contraseña:<br /></span> <input type="password" name="password2" size=
"20" /></p>
<p class="c4"><input type="submit" value="Enviar" name="B1" /></p>
</form>&nbsp;
</body>
</html>