-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistro.php
More file actions
53 lines (51 loc) · 1.99 KB
/
registro.php
File metadata and controls
53 lines (51 loc) · 1.99 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<div class="container">
<h4>Ingrese datos del trabajador:</h4>
<form action="registrotrabajador.php" method="POST" class="form-default">
<div class="form-group">
<label for="username">Nombre de Usuario:</label>
<input type="text" class="form-control" id="username" name="NombreUsuario">
</div>
<div class="form-group">
<label for="password">Contraseña:</label>
<input type="password" class="form-control" id="password" name="Password">
</div>
<div class="form-group">
<label for="Nombres">Nombres:</label>
<input type="text" class="form-control" id="Nombres" name="Nombres">
</div>
<div class="form-group">
<label for="Apellidos">Apellidos:</label>
<input type="text" class="form-control" id="Apellidos" name="Apellidos">
</div>
<div class="form-group">
<label for="cedula">Cedula:</label>
<input type="text" class="form-control" id="cedula" name="cedula">
</div>
<div class="form-group">
<label for="departament">Departamento:</label>
<select name="IdDepartamento" id="departament" class="form-control">
<option value="1">Departamento de trabajo especial de grado</option>
</select>
</div>
<div class="form-group">
<label for="Rol">Roles:</label>
<select name="IdRol" id="Rol" class="form-control">
<option value="1">Administrador</option>
<option value="2">Trabajador</option>
</select>
</div>
<div class="form-group">
<label for="Direccion">Direccion:</label>
<input type="text" class="form-control" id="Direccion" name="Direccion">
</div>
<div class="form-group">
<label for="corr">Correo:</label>
<input type="email" class="form-control" id="corr" name="Correo">
</div>
<div class="form-group">
<label for="code">Codigo carnet:</label>
<input type="text" class="form-control" id="code" name="CodigoCarnet">
</div>
<input type="submit" class="btn btn-default" value="Registrar usuario">
</form>
</div>