-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
144 lines (133 loc) · 3.92 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html>
<head>
<title>Sacbe</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=7" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <link
rel="stylesheet"
href="https://sdk-js.s3.amazonaws.com/sdk/styles-1.6.4.css"
/> -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6"
crossorigin="anonymous"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Roboto:wght@100;300;400;500;900&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/de50b5f30a.js"
crossorigin="anonymous"
></script>
<link href="css/style.css" rel="stylesheet" />
<link href="css/spacing.css" rel="stylesheet" />
<link href="css/colors.css" rel="stylesheet" />
</head>
<body class="bg-white">
<form id="frmData">
<div class="container">
<div class="card step mt-4 border-0" id="dvStep1">
<div
class="card-header p-4 bg-white text-center text-enfasis fw-bolder border-0"
>
<h5>Términos y Condiciones</h5>
</div>
<div class="card-body p-4 text-muted p-md-4 p-lg-5">
<p class="content ml-5 mr-5"></p>
</div>
<div class="card-footer p-4 bg-white border-0 text-right text-center">
<button
type="button"
data-action="reject-terms"
class="btn btn-light btn-sm pl-5 pr-5 mr-2 btn-step"
>
No acepto
</button>
<button
type="button"
data-step="2"
data-action="accept-terms"
class="btn btn-enfasis btn-sm pl-5 pr-5 btn-step"
>
Acepto los términos
</button>
</div>
</div>
<div class="card step mt-4 border-0" id="dvStep2">
<div
class="card-header p-4 bg-white text-center text-enfasis fw-bolder border-0"
>
<h5>Permítenos acceder a tu ubicación</h5>
</div>
<div class="card-body p-4 text-muted p-md-4 p-lg-5 text-center">
<div class="content ml-5 mr-5">
<button
id="btnGetLocation"
type="button"
class="btn btn-enfasis btn-sm pl-5 pr-5 mb-3"
data-action="get-location"
>
<i class="fas fa-street-view mr-4"></i>
Obtener mi ubicación
</button>
<div class="map-container">
<img src="images/map.png">
</div>
<h6 class="current-location text-left mt-2">
</h5>
</p>
</div>
<div class="card-footer p-4 bg-white border-0 text-right text-center">
<button
type="button"
data-step="1"
class="btn btn-light btn-sm pl-5 pr-5 mr-2 btn-step"
>
Atrás
</button>
<button
type="button"
data-step="3"
class="btn btn-enfasis btn-sm pl-5 pr-5 btn-step"
>
Siguiente
</button>
</div>
</div>
<div class="card step mt-4 border-0" id="dvStep3">
<div
class="card-header p-4 bg-white text-center text-enfasis fw-bolder border-0"
>
<h5>Paso 3</h5>
</div>
<div class="card-body p-4 text-muted p-md-4 p-lg-5">
<p class="content ml-5 mr-5"></p>
</div>
<div class="card-footer p-4 bg-white border-0 text-right text-center">
<button
type="button"
data-step="2"
class="btn btn-light btn-sm pl-5 pr-5 mr-2 btn-step"
>
Atrás
</button>
<button
type="button"
class="btn btn-enfasis btn-sm pl-5 pr-5 btn-step"
>
Finalizar
</button>
</div>
</div>
</div>
</form>
</body>
<script src="https://sdk-js.s3.amazonaws.com/sdk/onBoarding-1.28.0.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="scripts/app.js"></script>
</html>