-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcategory.php
More file actions
48 lines (35 loc) · 1.26 KB
/
category.php
File metadata and controls
48 lines (35 loc) · 1.26 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
<?php
include_once("admin/class/function.php");
$objBlogApp = new blogApp();
$getCategory = $objBlogApp->manageCategory();
?>
<?php include_once("includes/header.php") ?>
<!-- Page Content -->
<!-- Banner Starts Here -->
<div class="heading-page header-text">
<section style="margin: 200px auto; text-align: center;">
<h1 style="font-size:60px">Uncomplated page, Coming Soon Page</h1>
</section>
</div>
<!-- Banner Ends Here -->
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Additional Scripts -->
<script src="assets/js/custom.js"></script>
<!-- Author: Johirul Islam
Facebook: https://facebook.com/johirulshaky/
Instagram: https://instagram.com/johirulshaky/
Linkedin: https://linkedin.com/johirulshaky/ -->
<script language="text/Javascript">
cleared[0] = cleared[1] = cleared[2] = 0; //set a cleared flag for each field
function clearField(t) { //declaring the array outside of the
if (!cleared[t.id]) { // function makes it static and global
cleared[t.id] = 1; // you could use true and false, but that's more typing
t.value = ''; // with more chance of typos
t.style.color = '#fff';
}
}
</script>
</body>
</html>