-
Notifications
You must be signed in to change notification settings - Fork 3
/
footer.php
90 lines (82 loc) · 2.91 KB
/
footer.php
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
<footer class="footer">
<div class="container text-center">
<p class="text-muted " style="margin-bottom: 0px;bottom:0px;display:box;position: static">Copyright © 2018</p>
</div>
</footer>
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> -->
<script src="assets/js/jquery-3.3.1.slim.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script> -->
<script src="assets/js/popper.min.js"></script>
<!-- <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> -->
<script src="assets/js/bootstrap.min.js"></script>
<!-- Then Material JavaScript on top of Bootstrap JavaScript -->
<script src="assets/js/material.min.js"></script>
<!-- Bootstrap CSS -->
<!-- <link href="assets/css/bootstrap.min.css" rel="stylesheet" media="all"> -->
<link href="assets/css/print.css" rel="stylesheet" media="print">
<!-- jQuery -->
<!-- <script src="assets/js/jquery.min.js"></script> -->
<!-- Bootstrap JavaScript -->
<!-- <script src="assets/js/bootstrap.min.js"></script> -->
<script type="text/javascript">
$(document).ready(function() {
// $('#tgl_lahir').pickdate();
$('#tgl_lahir').pickdate({
// cancel : 'Clear',
// closeOnCancel : false,
// closeOnSelect : true,
// container : 'body',
// containerHidden : 'body',
// firstDay : 1,
format : 'dd/mm/yyyy',
formatSubmit : 'yyyy-mm-dd',
// hiddenPrefix : 'prefix_',
// hiddenSuffix : '_suffix',
// labelMonthNext : 'Go to the next month',
// labelMonthPrev : 'Go to the previous month',
// labelMonthSelect : 'Choose a month from the dropdown menu',
// labelYearSelect : 'Choose a year from the dropdown menu',
// ok : 'Close',
// onClose : function () {
// console.log('Datepicker closes')
// },
// onOpen : function () {
// console.log('Datepicker opens')
// },
selectMonths : true,
selectYears : 15,
today : 'Today'
});
$('button.print').click(function() {
window.print();
return false;
});
});
</script>
<style type="text/css">
.footer {
/*position: absolute;*/
bottom: 0px;
margin-bottom: 0px;
width: 100%;
height: 60px;
line-height: 60px;
background-color: #f5f5f5;
}
.footer > .container {
padding-right: 15px;
padding-left: 15px;
}
body{
background: -webkit-linear-gradient(left, #0072ff, #00c6ff);
}
@media print
{
.no-print, .no-print *
{
display: none !important;
}
}
</style>
</body>
</html>