-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslides.php
More file actions
26 lines (24 loc) · 1.1 KB
/
Copy pathslides.php
File metadata and controls
26 lines (24 loc) · 1.1 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
<?php include './partials/head.php' ?>
<div class="container font-fwd">
<div class="row">
<div class="col-xs-4 col-xs-offset-4">
<div id="content-master" class="text-center">
<?php
include './partials/slides/jk.php';
include './partials/slides/age.php';
include './partials/slides/job.php';
include './partials/slides/income.php';
include './partials/slides/expense.php';
include './partials/slides/smoke.php';
include './partials/slides/surety.php';
?>
<div id="navigator" class="font-signature">
<button type="button" class="btn btn-signature nav-previous pull-left"><</button>
<button type="button" class="btn btn-signature nav-next pull-right">></button>
<p class="nav-indicator"><span class="nav-current">01</span>/07</p>
</div>
</div>
</div>
</div>
</div>
<?php include './partials/foot.php' ?>