42 lines
1.5 KiB
PHP
42 lines
1.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" />
|
|
<script src="validate_user.js"></script>
|
|
</head>
|
|
<body>
|
|
<?php include 'navbar.php'; ?>
|
|
<form name="create_form" method="post" action="user_management.php" onsubmit="return validateUser();">
|
|
<div class="input-group">
|
|
<label>Nombre</label>
|
|
<input type="text" name="nombre" value="">
|
|
</div>
|
|
<div class="input-group">
|
|
<label>usuario</label>
|
|
<input type="text" name="usuario" value="">
|
|
</div>
|
|
<div class="input-group">
|
|
<label>contraseña</label>
|
|
<input type="password" name="contraseña" value="">
|
|
</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="">
|
|
</div>
|
|
<div class="input-group">
|
|
<button class="btn" type="submit" name="create" >Guardar</button>
|
|
</div>
|
|
</form>
|
|
</body>
|