-
Notifications
You must be signed in to change notification settings - Fork 0
/
CambiarPassword.php
executable file
·34 lines (34 loc) · 1.34 KB
/
CambiarPassword.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
session_start();
if (isset($_SESSION['idusuario'])){
$idusuario=$_SESSION['idusuario'];
}
?>
<script type="text/javascript" src="js/Validar.js"></script>
<div id="marcoPassword">
<form name="ActualizarPassword" id="ActualizarPassword" method="Post" action="ActualizaPassword.php">
<fieldset class="ui-corner-all bordeForm">
<legend>Cambiar Contraseña de Usuario</legend>
<table width='100%'>
<tr><td colspan="2"> </td></tr>
<tr>
<td width="20%"><label for="Password">Contraseña Actual</label></td>
<td width="80%"><input type='password' id="Password" name="Password" maxlength="15" OnFocus="Selecciona(this);"></td>
</tr>
<tr>
<td width="20%"><label for="PasswordNew">Contraseña Nueva</label></td>
<td width="80%"><input type='password' id="PasswordNew" name="PasswordNew" maxlength="15" OnFocus="Selecciona(this);"></td>
</tr>
<tr>
<td width="20%"><label for="PasswordConf">Repetir Contraseña</label></td>
<td width="80%"><input type='password' id="PasswordConf" name="PasswordConf" maxlength="15" OnFocus="Selecciona(this);"></td>
</tr>
<tr><td colspan="2"> </td></tr>
<tr>
<td align="right"><button id="Guardar" type="submit"> Guardar </button></td>
<td><button id="Cancelar" type="reset"> Cancelar </button></td>
</tr>
</table>
</fieldset>
</form>
</div>