-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPass.php
31 lines (31 loc) · 774 Bytes
/
Pass.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
<?php
session_start();
?>
<html>
<head>
<title>
Login Sucessful
</title>
<link rel="stylesheet" type="text/css" href="css/result.css">
<link rel="icon" href="avtar.png">
</head>
<body>
<div class="result">
<h1>
You Have Logged In Sucessfully
<br>
<?php echo $_SESSION['name']; ?>
<br>
</h1>
<form action="lgpg.php" method="post">
<input type="submit" value="Logout">
<br>
</form>
<center>
<a href="movis.php">
click here to access the file
</a>
</center>
</div>
</body>
</html>