66 lines
2.5 KiB
PHP
66 lines
2.5 KiB
PHP
<?php session_start(); ?>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<title>Gestión de usuarios</title>
|
|
<meta name="description" content="">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="../../static/style.css" type="text/css" media="screen" />
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav>
|
|
<ul class="navbar-left">
|
|
<li class="list"><a href="index.php">Página principal</a></li>
|
|
<?php if(isset($_SESSION["user"])) : ?>
|
|
<li class="list"><a href="user.php">Usuarios</a></li>
|
|
<li class="list"><a href="patient.php">Pacientes</a></li>
|
|
<li class="list"><a href="appointment.php">Citas</a></li>
|
|
<li class="list"><a href="holiday.php">Vacaciones</a></li>
|
|
<?php endif ?>
|
|
<?php if($_SESSION["user_type"] == 2) : ?>
|
|
<li class="list"><a href="report.php">Informes</a></li>
|
|
<?php endif ?>
|
|
<li class="list"><a href="login.php">Login</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<?php
|
|
include '../database.php';
|
|
|
|
$pdo = connectDatabase();
|
|
$data = fetchUserData($pdo, $_GET["edit"]);
|
|
?>
|
|
<form method="post" action="../user_management.php">
|
|
<div class="input-group">
|
|
<label>Nombre</label>
|
|
<input type="text" name="nombre" value="<?php echo $data[1]; ?>">
|
|
</div>
|
|
<div class="input-group">
|
|
<label>usuario</label>
|
|
<input type="text" name="usuario" value="<?php echo $data[2]; ?>">
|
|
</div>
|
|
<div class="input-group">
|
|
<label>contraseña</label>
|
|
<input type="password" name="contraseña" value="<?php echo $data[3]; ?>">
|
|
</div>
|
|
<div class="select-input">
|
|
<label>rol</label>
|
|
<select id="rol" name="rol">
|
|
<option value="1">administrativo</option>
|
|
<option value="2">médico</option>
|
|
</select>
|
|
</div>
|
|
<div class="input-group">
|
|
<label>correo</label>
|
|
<input type="text" name="correo" value="<?php echo $data[6]; ?>">
|
|
</div>
|
|
<div class="input-group">
|
|
<button class="btn" type="submit" name="edit" >Editar</button>
|
|
</div>
|
|
<input type="hidden" name="id" value="<?php echo $_GET["edit"]; ?>">
|
|
</form>
|
|
<?php closeDatabase($pdo); ?>
|
|
</body>
|