-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (32 loc) · 1.09 KB
/
index.html
File metadata and controls
36 lines (32 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<style>
.blue {
background-color: blue;
}
</style>
<script src="https://unpkg.com/vue"></script>
</head>
<body>
<div id="app">
<ul id="nav" v-for="link in links">
<li><a :href="link.href">{{link.title}}</a></li>
</ul>
</div>
<form id="costumer">
<label for="txtNombre">Nombre:</label>
<input type="text" id="txtNombre" name="txtNombre" /><br>
<label for="txtApellido">Apellido:</label>
<input type="text" id="txtApellido" name="txtApellido" /><br>
<label for="txtId">ID:</label>
<input type="text" id="txtId" name="txtId" /><br>
<label for="txtPhone">Phone</label>
<input type="text" id="txtPhone" name="txtPhone" /><br>
<button id="btnSend">Send</button>
<button id="btnSearch">Search</button>
</form>
<div id="content"></div>
<script>require('./app.js');</script>
</body>
</html>