-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.php
39 lines (35 loc) · 1.01 KB
/
landing.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
<?php session_start(); ?>
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="modal-3">
<div class="pass">
<div class="changepass">
<form id="form2" action="./scripts/users.php" method="post">
<!-- this is the fist step -->
<div class="step">
<input type="email" name="change_email" class="name" value="<?php echo $_SESSION['user']; ?>" disabled ><br>
<input type="password" name="change_password" class="name" placeholder="Your Password" required><br>
</div>
<button class="changep">CHANGE</button>
</form>
</div>
</div>
</div>
<div class="wrapper">
<div class="pro-picture">
</div>
<div class="info">
<h2>Profile Info</h2>
<div class="information">
</div>
<button class="change">Change Password</button>
<a href="./index.php"><button class="logout"> LOG OUT </button></a>
</div>
</div>
<script src="jquery.min.js"></script>
<script src="app.js"></script>
</body>
</html>