forked from nisiya/MaristIDCP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
add_course_success.php
34 lines (34 loc) · 1.09 KB
/
add_course_success.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
<!--Success page for adding a course-->
<?php
$title = 'IDCP - Add Course Success';
$page = 'course';
$page_name = 'add_crs';
require('includes/header.php');
$page = 'course.php';
header("Refresh: 3;url=$page");
?>
<!-- Page Content -->
<div id="page-content-wrapper">
<div class="container-fluid">
<div class="dropdown">
<h1>Success!</h1>
<p>You will be automatically redirected in 3 seconds...</p>
<div class = "butspan" style = "width: 300px;">
<button type="button" class="btn btn-primary btn-block" style = "margin-right: 50px;" onclick="location.href='course.php';">Continue</button>
</div>
</div>
<!-- dropdown -->
</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>