forked from prakharsingh1312/cusiege
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinish.php
More file actions
23 lines (22 loc) · 717 Bytes
/
Copy pathfinish.php
File metadata and controls
23 lines (22 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
session_start();
?>
<html>
<head>
<link rel='icon' href='icon/favicon.ico' type='image/x-icon'>
<title>Finish</title>
<link rel="stylesheet" href="Assets/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
<link rel='icon' href='icon/favicon.ico' type='image/x-icon'>
</head>
<body>
<div id="wrapper" class='div'> <div class='div'>
<center>
<?php if($_SESSION['check']==1)
echo '<h3>Your test has been submitted successfully.</h3>';
session_destroy();
?>
<h4>You've been logged out.</h4>
<h4>Click <a href="index">here</a> to login again.</h4>
</center></div></div></body>
</html>