-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathlogout.php
More file actions
34 lines (29 loc) · 861 Bytes
/
logout.php
File metadata and controls
34 lines (29 loc) · 861 Bytes
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
<?php
session_start();
session_destroy();
?>
<!DOCTYPE>
<html>
<head>
<title>Sign Up for TeraShare</title>
</head>
<link type="text/css" rel="stylesheet" href="css/css_for_signup.css">
<body>
<ul id="header">
<li><a href="#SignUp">Sign Up</a></li>
<li><a href="#ContactUs">Contact Us</a></li>
<li><a href="#FAQ">FAQs</a></li>
<li><a href="#Login">Login</a></li>
</ul>
<div class="navigationbar">
<h1>Tera share</h1>
<h4>Welcomes you</h4>
</div><br><br>
<div color="white"><b>You have logged out successfully!</b><br>
<a href="login.php">Login to use TersShare</a><br>
</div>
<footer>
<h3>Page Developed and Maintained by <b>Team TeraShare</b></h3>
</footer>
</body>
</html>