-
Notifications
You must be signed in to change notification settings - Fork 1
/
form_address.html
48 lines (41 loc) · 1.77 KB
/
form_address.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
<!DOCTYPE html>
<html>
<head>
<title>...</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="bower_components/bootstrap/dist/css/bootstrap.css" rel="stylesheet" />
<link href="bower_components/bootstrap/dist/css/bootstrap-theme.min.css" rel="stylesheet" />
<link href="css/map.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<form>
<div class="form-group">
<label for="rua">Rua:</label>
<input type="text"class="form-control" id="rua" placeholder="Rua">
</div>
<div class="form-group">
<label for="mumero">Número:</label>
<input type="text"class="form-control" id="numero" placeholder="Número">
</div>
<div class="form-group">
<label for="cidade">Cidade: </label>
<input type="text" class="form-control" id="cidade" placeholder="Cidade">
</div>
<div class="form-group">
<label for="bairro">Bairro: </label>
<input type="text" class="form-control" id="bairro" placeholder="Bairro">
</div>
<div class="form-group">
<label for="estado">Estado:</label>
<input type="text" class="form-control" id="estado" placeholder ="Estado">
</div>
<button id="btnSubmit" type="button" class="btn btn-default">Continuar</button>
</form>
</body>
<script src="bower_components/jquery/dist/jquery.js" type="text/javascript"></script>
<script src="bower_components/vue/dist/vue.js" type="text/javascript"></script>
<script src="js/form_address.js" type="text/javascript"></script>
</html>