-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetting.php
118 lines (104 loc) · 5.37 KB
/
setting.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Jutsu || Settings</title>
<?php include "head.php";?>
</head>
<body>
<div class="page-wrapper default-theme sidebar-bg bg1 toggled">
<!-- navbar -->
<?php include "navbar.php";?>
<!-- page-content -->
<main class="page-content pt-2 neumorphic3">
<div id="overlay" class="overlay " ></div>
<div class="container-fluid p-5">
<div class="row neumorphic6">
<div class="form-group col-md-12">
<div class="tryme2"><h1>Settings <i>(beta)</i></h1></div>
</div>
<div class="form-group col-md-12">
<a id="toggle-sidebar" class="btn btn-secondary rounded-0" href="#">
<span>Toggle Sidebar</span>
</a>
<a id="pin-sidebar" class="btn btn-outline-secondary rounded-0" href="#">
<span>Pin Sidebar</span>
</a>
</div>
</div>
<br>
<div class="row neumorphic6">
<div class="form-group col-md-12">
<h3>Themes</h3>
<p>Here are more themes that you can use</p>
</div>
<div class="form-group col-md-12">
<a href="#" data-theme="default-theme" class="theme default-theme selected"></a>
<a href="#" data-theme="chiller-theme" class="theme chiller-theme"></a>
<a href="#" data-theme="legacy-theme" class="theme legacy-theme"></a>
<a href="#" data-theme="ice-theme" class="theme ice-theme"></a>
<a href="#" data-theme="cool-theme" class="theme cool-theme"></a>
<a href="#" data-theme="light-theme" class="theme light-theme"></a>
</div>
<div class="form-group col-md-12">
<p>You can also use background image </p>
</div>
<div class="form-group col-md-12">
<a href="#" data-bg="bg1" class="theme theme-bg selected"></a>
<a href="#" data-bg="bg2" class="theme theme-bg"></a>
<a href="#" data-bg="bg3" class="theme theme-bg"></a>
<a href="#" data-bg="bg4" class="theme theme-bg"></a>
</div>
<div class="form-group col-md-12">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input" id="toggle-bg" checked>
<label class="custom-control-label" for="toggle-bg">Background image</label>
</div>
</div>
<div class="form-group col-md-12">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input" id="toggle-border-radius">
<label class="custom-control-label" for="toggle-border-radius">Border radius</label>
</div>
</div>
</div>
<br>
<div class="row neumorphic6">
<div class="form-group col-md-12">
<small>Made with <i class="fa fa-heart text-danger" aria-hidden="true"></i> by <span
class="text-secondary font-weight-bold">Jutsu Team</span></small>
</div>
<div class="form-group col-md-12">
<a href="https://github.com/TheLast22" target="_blank"
class="btn btn-sm bg-secondary shadow-sm rounded-0 text-light mr-3 mb-3">
<i class="fab fa-github" aria-hidden="true"></i>
</a>
<a href="https://twitter.com/Stewart_ca8" target="_blank"
class="btn btn-sm bg-secondary shadow-sm rounded-0 text-light mr-3 mb-3">
<i class="fab fa-twitter" aria-hidden="true"></i>
</a>
<a href="https://www.instagram.com/stewart.ca8/" target="_blank"
class="btn btn-sm bg-secondary shadow-sm rounded-0 text-light mr-3 mb-3">
<i class="fab fa-instagram" aria-hidden="true"></i>
</a>
<a href="https://www.facebook.com/stewart.ca.8" target="_blank"
class="btn btn-sm bg-secondary shadow-sm rounded-0 text-light mr-3 mb-3">
<i class="fab fa-facebook" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<br><br>
<!-- footer -->
<?php include "footer.php";?>
</main>
<!-- page-content" -->
</div>
<!-- page-wrapper -->
<!-- using local scripts -->
<script src="js/jquery.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.mCustomScrollbar.concat.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>