-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogout.php
44 lines (31 loc) · 986 Bytes
/
logout.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
<?php session_start();
session_destroy();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/login.css">
<title>log out</title>
</head>
<body>
<div class="logo">
<img src="images/logo.png" alt="">
</div>
<div class="wrapper">
<div class="title">logout</div>
<div class="input_fild">
<h3>Session ended.</h3><br>
</div>
<div class="input_fild">
<p>If you wanna you can log in at following link: </p><br>
</div>
<div class="input_fild">
<form action="login.php">
<input type="submit" value="Log in" />
</form>
</div>
</div>
</body>
</html>