forked from nisiya/MaristIDCP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
certificate.php
44 lines (44 loc) · 1.65 KB
/
certificate.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
<!--Home page for certificates-->
<?php
$title = "IDCP - Certificate";
$page = 'certificate';
$page_name = 'cert';
require('includes/header.php');
if(isset($_SESSION['searchString'])){
$_SESSION['searchString'] = "";
}
?>
<!-- Bread Crumbs -->
<ol class = "breadcrumb">
<li><a href = "home.php">Home</a></li>
<li class = "active">Certificate</li>
</ol>
<!-- Page Content -->
<div id="page-content-wrapper">
<div class="container-fluid">
<div class="dropdown">
<div class="page-header">
<h1>Certificates</h1>
</div>
<br>
<div class = "butspan" style = "width: 300px;">
<button type="button" class="btn btn-primary btn-block" style = "margin-right: 50px; height: 50px; <?php if($user_role=='User') echo 'display:none;';?> " onclick="location.href='certificate_add.php';">Add New Certificate</button>
<button type="button" class="btn btn-primary btn-block" style = "margin-right: 50px; height: 50px;" onclick="location.href='certificate_search.php';">Search for Certificate</button>
</div>
</div>
<br>
<button class="btn btn-default btn-sm" onclick ="location.href='home.php';">Back to Home</button>
</div>
<!-- /#container -->
</div>
<!-- /#page-content-wrapper -->
<!-- Footer -->
<?php require('includes/footer.php'); ?>
</div>
<!-- /#wrapper -->
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>