-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwelcome.php
More file actions
29 lines (23 loc) · 772 Bytes
/
welcome.php
File metadata and controls
29 lines (23 loc) · 772 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
<?php
include('session.php');
?>
<html lang="en-us">
<head>
<title>Password Manager</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="project.css">
</head>
<body>
<div class="welcome">
WELCOME TO PASSWORD MANAGER</div>
<h1>Welcome <?php echo $login_session; ?></h1>
How can I help you?<br>
<form action="Add_new.php" method="post">
<input type="submit" name="submit" value="Add new user details"><br>
</form>
<form action="List_all.php" method="post">
<input type="submit" name="submit" value="List your saved Password"><br>
</form>
<h2><a href = "logout.php">Sign Out</a></h2>
</body>
</html>