-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathredirect.php
36 lines (28 loc) · 901 Bytes
/
redirect.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
<?php require_once 'queue.php'; ?>
<!DOCTYPE html>
<html lang="en">
<?php
require_once 'head/head.php';
?>
<body>
<div class="row justify-content-center mt-3">
<div class="col-md-2 bg-color p-2 m-3 text-white shadow">
<ul class="nav flex-column nav-pills text-center">
<img src="img/logo.svg" alt="source-resource" class="img-thumbnail pb-4">
<li class="nav-item">
<a class="nav-link m-1" href="index.php">Home</a>
</li>
<li class="nav-item">
<a class="nav-link m-1" href="http://www.sourceglobalresearch.com/" target="_blank">Visit Us</a>
</li>
</ul>
</div>
</div>
<div class="row justify-content-center mt-3">
<div class="text-white text-center display-4">
Form submitted successfully!!
</div>
</div>
<?php require_once 'script/script.php'; ?>
</body>
</html>