-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.php
More file actions
140 lines (104 loc) · 3.73 KB
/
help.php
File metadata and controls
140 lines (104 loc) · 3.73 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
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
<?php
include_once("php_functions/functions.php");
include_once("configs/conn.inc");
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta name="description" content="Crush it Able The most popular Admin Dashboard template and ui kit">
<meta name="author" content="PuffinTheme the theme designer">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="assets/plugins/highlightjs/styles/monokai-sublime.min.css">
<title> Zidi : Page</title>
<style type="text/css">
/* body.dark{
background-color: #292C35
}
body.dark p{
color: #fff;
}
.checkbox:checked + .label .ball{
transform: translate(24px);
}
*/
</style>
<!-- Bootstrap Core and vendor -->
<?php
include_once 'styles.php';
?>
</head>
<body class="font-opensans">
<!-- Page Loader -->
<div class="page-loader-wrapper">
<div class="loader">
</div>
</div>
<!-- Start main html -->
<div id="main_content">
<?php
include_once 'index-header.php';
?>
<!-- Small icon top menu -->
<!-- Notification and Activity-->
<!-- start User detail -->
<!-- start Main menu -->
<!-- start main body part-->
<div class="container">
<!-- start body header -->
<div class="section-body">
<div class="container-fluid">
<div class="row clearfix row-deck" style="min-height: 600px;">
<div class="col-lg-2 col-md-2">
</div>
<div class="col-lg-10">
<div class="container card container-fluid">
<div class="card-body">
<h4>Help</h4>
<p>For any assistance please email us at truweb@icthub.co.ke or DM us via our social media platforms</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Start page footer -->
<div class="section-body">
<?php
include_once 'footer.php';
?>
</div>
</div>
</div>
<!-- jQuery and bootstrtap js -->
<?php
include_once('scripts.php');
?>
<script>
$(document).ready(function() {
updateHeader("unsecured"); //check for logged in user so as to update the header accordingly
//authCheck('register-page', 'register') //check for avilable session, if so redirect to home page
footer_date(); //load footer
//call submitBtn() and parse register() as a parameter and on hover hint title
submitBtn('#regBtn', 'validateRegForm()', "Click to register");
const url_string = window.location.href;
const url = new URL(url_string);
const success = url.searchParams.get("success");
const provider = url.searchParams.get("provider");
if ((success === 'true' || success === 'false') && provider === "Google") {
googleSignup()
}
if ((success === 'true' || success === 'false') && provider === "Github") {
githubSignup()
}
// Initialize select2
$("#country_input").select2({
placeholder: 'Search...',
width: 'resolve'
}
);
});
</script>
</body>
</html>