-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (47 loc) · 2.06 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name = "viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Prueba</title>
<!--Bootswatch Cosmo Theme-->
<link rel="stylesheet" href="bootstrap.min.css">
</head>
<body>
<!--Barra de navegacion-->
<nav class="navbar navbar-dark bg-dark">
<a class="navbar-brand" href="#">Aplicacion de contactos</a>
</nav>
<div class="container">
<!-- APPLICACION -->
<div id="App" class="row pt-5">
<!-- FORM -->
<div class="col-md-4">
<div class="card">
<div class="card-header">
<h4>Registrar contacto</h4>
</div>
<form id="product-form" class="card-body">
<div class="form-group">
<input type="text" id="nombre" placeholder="Nombre Persona" class="form-control">
</div>
<div class="form-group">
<input type="tel" id="telefono" placeholder="Numero de telefono"
class="form-control">
</div>
<div class="form-group">
<input type="email" id="correo" placeholder="Correo electronico"
class="form-control">
</div>
<input type="submit" value="Registrar" class="btn btn-primary btn-block">
</form>
</div>
</div>
<!-- DIV PARA LISTA PRODUCTOS -->
<div id="product-list" class="col-md-8"></div>
</div>
</div>
<script src="App.js" type="module"></script>
</body>
</html>