-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy-profile.html
127 lines (109 loc) · 4.23 KB
/
my-profile.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<!-- saved from url=(0049)https://getbootstrap.com/docs/4.3/examples/album/ -->
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="">
<title>eMercado - Todo lo que busques está aquí</title>
<link rel="canonical" href="https://getbootstrap.com/docs/4.3/examples/album/">
<link href="https://fonts.googleapis.com/css?family=Raleway:300,300i,400,400i,700,700i,900,900i" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<link href="css/dropzone.css" rel="stylesheet">
</head>
<body>
<nav id="barraNavegacion" class="navbar navbar-expand-lg navbar-dark bg-danger">
<div class="container container-fluid">
<div class="collapse navbar-collapse " id="navbarNav">
<ul class="navbar-nav ">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Inicio</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="categories.html">Categorías</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="products.html">Productos</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="sell.html">Vender</a>
</li>
</ul>
</div>
<div class="navbar-brand" id= "UsuarioContenedor"></div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</nav>
<main class="pb-5">
<div class="container py-5 text-center">
<h3>Mi Usuario</h3>
</div>
<div class="container">
<img id="imgCargada" src="" alt=""><br>
<input class="btn btn-light mb-5 mt-2" type="file" id="Imagen">
<div class="row">
<div class="col-12 col-lg-6">
<label for="">Nombre:</label>
<input class="form-control form-control-lg" id="nombre" type="text" style="font-size: medium;">
</div>
<div class="col-12 col-lg-6">
<label for="">Apellido:</label>
<input class="form-control form-control-lg" id="apellido" type="text" style="font-size: medium;">
</div>
</div>
<div class="row my-5">
<div class="col-5 col-lg-5">
<label for="">Fecha de nacimiento:</label><br>
<input class="form-control form-control-lg" id="edad" type="date" style="font-size: small;">
</div>
<div class="col-7 col-lg-7">
<label for="">Telefono:</label><br>
<input class="form-control form-control-lg" id="telefono" type="text" style="font-size: medium;">
</div>
<div></div>
</div>
<div class="row">
<div class="col-12 col-lg-7">
<label for="">Correo electronico:</label><br>
<input class="form-control form-control-lg" id="correo" type="text" style="font-size: medium;">
</div>
</div>
<div style="width: 100%;">
<button type="button" class="btn btn-primary my-5" style="position:relative; left: 80%;"
onclick="guardarDatos()">Guardar</button>
</div>
</div>
</main>
<div id="spinner-wrapper">
<div class="lds-ring">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<script src="js/jquery-3.4.1.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/dropzone.js"></script>
<script src="js/init.js"></script>
<script src="js/my-profile.js"></script>
</body>
</html>