-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathviewUser.html
More file actions
91 lines (89 loc) · 4.06 KB
/
Copy pathviewUser.html
File metadata and controls
91 lines (89 loc) · 4.06 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vista Usuario</title>
<!--Bootstrap link-->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous" />
<!--Font Awesome-->
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="./Styles/styles.css">
</head>
<body>
<div class="container mt-4">
<h3 class="text-center">Agrega un Usario nuevo</h3>
<br>
<div class="row">
<div class="row">
<div class="ms-lg-5 col-3">
<img id="imgUser" width="150px"
height="150px" class="rounded float-start"
alt="...">
</div>
</div>
<div class="row mt-2">
<div class="mb-3 mx-5 col-3">
<label for="name" class="col-sm-2 col-form-label">NOMBRE</label>
<div class="col-sm-10">
<input type="text" readonly
class="fs-5 fw-bold form-control-plaintext" id="name">
</div>
</div>
<div class="mb-3 mx-5 col-3">
<label for="lastName" class="col-sm-2 col-form-label">APELLIDOS</label>
<div class="col-sm-10">
<input type="text" readonly
class="fs-5 fw-bold form-control-plaintext" id="lastName">
</div>
</div>
<div class="mb-3 mx-5 col-3">
<label for="email" class="col-form-label">CORREO
ELECTRONICO</label>
<div class="col-sm-10">
<input type="text" readonly
class="fs-5 fw-bold form-control-plaintext" id="email">
</div>
</div>
</div>
<div class="row">
<div class="mb-3 mx-5 col-3">
<label for="roleName" class="col-sm-2 col-form-label">AREA</label>
<div class="col-sm-10">
<input type="text" readonly
class="fs-5 fw-bold form-control-plaintext" id="roleName">
</div>
</div>
<div class="mb-3 mx-5 col-3">
<label for="status" class="col-sm-2 col-form-label">ESTATUS</label>
<div class="col-sm-10">
<input type="text" readonly
class="fs-5 fw-bold form-control-plaintext" id="status">
</div>
</div>
</div>
</div>
<hr>
<div class="row">
<div class="d-grid gap-2 col-4">
<button type="button" onclick="editUser()" class="btn btn-primary btn-lg">Editar
Perfil</button>
</div>
<div class="d-grid gap-2 col-4">
<button type="button" class="btn btn-danger btn-lg"
onclick="location.href='index.html'">Regresar</button>
</div>
</div>
</div>
<script src="./js/viewController.js"></script>
</body>
</html>