| 15403 |
manish.sha |
1 |
<div class="howitworks">
|
|
|
2 |
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
|
|
|
3 |
<!-- Wrapper for slides -->
|
|
|
4 |
<div class="carousel-inner" role="listbox">
|
|
|
5 |
<div class="item active img img-responsive">
|
|
|
6 |
<img src="/img/1.png" alt="...">
|
|
|
7 |
<div class="carousel-caption">
|
|
|
8 |
...
|
|
|
9 |
</div>
|
|
|
10 |
</div>
|
|
|
11 |
<div class="item img img-responsive">
|
|
|
12 |
<img src="/img/2.png" alt="...">
|
|
|
13 |
<div class="carousel-caption">
|
|
|
14 |
...
|
|
|
15 |
</div>
|
|
|
16 |
</div>
|
|
|
17 |
<div class="item img img-responsive">
|
|
|
18 |
<img src="/img/3.png" alt="...">
|
|
|
19 |
<div class="carousel-caption">
|
|
|
20 |
...
|
|
|
21 |
</div>
|
|
|
22 |
</div>
|
|
|
23 |
<div class="item img img-responsive">
|
|
|
24 |
<img src="/img/4.png" alt="...">
|
|
|
25 |
<div class="carousel-caption">
|
|
|
26 |
...
|
|
|
27 |
</div>
|
|
|
28 |
</div>
|
|
|
29 |
</div>
|
|
|
30 |
|
|
|
31 |
<!-- Controls -->
|
|
|
32 |
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
|
|
|
33 |
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
|
|
|
34 |
<span class="sr-only">Previous</span>
|
|
|
35 |
</a>
|
|
|
36 |
<a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
|
|
|
37 |
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
|
|
|
38 |
<span class="sr-only">Next</span>
|
|
|
39 |
</a>
|
|
|
40 |
</div>
|
|
|
41 |
<div class="row">
|
|
|
42 |
<div class="col-xs-3 pull-right">
|
|
|
43 |
<a id="gotit" href="/deals/?user_id=<?php echo $logged_user['id'];?>">Got it!</a>
|
|
|
44 |
</div>
|
|
|
45 |
</div>
|
|
|
46 |
</div>
|
|
|
47 |
<script type="text/javascript">
|
|
|
48 |
$('.carousel').carousel();
|
|
|
49 |
</script>
|