-
Notifications
You must be signed in to change notification settings - Fork 1
/
success.php
64 lines (50 loc) · 1.54 KB
/
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
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
<?php
/* Displays all successful messages */
if (session_status() == PHP_SESSION_NONE) { session_start();}
?>
<!DOCTYPE html>
<html>
<head>
<title>Success</title>
<?php include 'css/css.html'; ?>
</head>
<body>
<div class="form">
<div class="text-center jumbotron bg-white">
<h1><?= 'Success'; ?></h1>
<h5 class="text-success">
<?php
if( isset($_SESSION['message']) ):
echo $_SESSION['message'];
unset($_SESSION['message']);
else:
header( "location: index.php" );
endif;
?>
</h5>
</div>
<a href="index.php"><button class="button button-block">Home</button></a>
<div class="m-4">
<a id="back_btn"><button class="button button-block">Back</button></a>
</div>
</div>
<!-- Bootstrap core JavaScript -->
<script src="js/jquery.min.js"></script>
<script src="js/moment.min.js"></script>
<script type="text/javascript" src="js/tempusdominus-bootstrap-4.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<!-- Plugin JavaScript -->
<script src="js/jquery.easing.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<!-- Contact Form JavaScript -->
<script src="js/jqBootstrapValidation.min.js"></script>
<script src="js/contact_me.js"></script>
<!-- Custom scripts for this template -->
<script src="js/freelancer.js"></script>
<script type="text/javascript">
$("#back_btn").on('click',function (e) {
window.history.back();
})
</script>
</body>
</html>