-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.php
37 lines (31 loc) · 914 Bytes
/
output.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
<!-- Gateway page -->
<?php
session_start();
$heading = isset($_SESSION['heading']) ? $_SESSION['heading'] : '';
$subject = isset($_SESSION['subject']) ? $_SESSION['subject'] : '';
$data = isset($_SESSION['data']) ? $_SESSION['data'] : '';
?>
<!DOCTYPE html>
<html>
<head>
<link rel='stylesheet' href='assest/style.css'>
<title><?php echo $heading; ?></title>
</head>
<body>
<div class="login-box">
<div id="logo"><img src="./images/logo.png" width="190px">
</div>
<h2><br></h2>
<form>
<div class="user-box">
<h1 style="color:white; text-align:center;"><?php echo $subject; ?></h1>
<p style="color:white; text-align:center;"><?php echo $data; ?></p>
<a href='/' style="margin-left:24%" class='validate'>
<span></span>
Click Here
</a>
</div>
</form>
</div>
</body>
</html>