-
Notifications
You must be signed in to change notification settings - Fork 0
/
Solicited_services.html
51 lines (45 loc) · 1.36 KB
/
Solicited_services.html
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TecnoServ: Servicios solicitados</title>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/solicited_services.css">
</head>
<body>
<header>
<br>
<a href="index.html">INICIO</a>
<a href="about.html">MAS DE NOSOTROS</a>
<a href="service.html">SERVICIOS</a>
</header>
<main>
<table class="table">
<thead>
<tr>
<th>Nombre solicitante</th>
<th>Tipo de solicitud</th>
<th>e-mail</th>
<th>Numero de telefono</th>
<th>Descripción </th>
<th>Accion</th>
</tr>
</thead>
<tbody>
<tr>
<td> # </td>
<td> # </td>
<td> # </td>
<td> # </td>
<td> # </td>
<td><button type="button" routerLink="/edit/(fempleado.id))" class="btn btn-primary">Editar</button> |
<button type="button" class="btn btn-danger” (click)="borrarEmpleado(empleado.id, iControl)"">Borrar</button></td>
</tr>
</tbody>
</table>
</main>
</body>
</html>