Implement update and delete user
This commit is contained in:
38
src/forms/user_create_form.html
Normal file
38
src/forms/user_create_form.html
Normal file
@@ -0,0 +1,38 @@
|
||||
<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>
|
||||
<form method="post" action="../user_management.php">
|
||||
<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>
|
||||
Reference in New Issue
Block a user