-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpassword-changed.php
68 lines (64 loc) · 1.9 KB
/
password-changed.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php require_once "controllerUserData.php"; ?>
<?php
if($_SESSION['info'] == false){
header('Location: login-user.php');
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login Form</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style-form.css">
<style>
#gif {
z-index: 0;
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
opacity: .5;
z-index: -2;
}
.vr {
border: .5px solid rgba(0, 0, 0, .1);
height: 100px;
}
.row {
display: flex;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
justify-content: space-evenly;
align-items: center;
}
</style>
</head>
<body>
<img id="gif" src="./public/assets/43295-heart-fly-transparent-bg.gif" alt="" >
<div class="container">
<div class="row">
<div class="col-md-4 form login-form">
<?php
if(isset($_SESSION['info'])){
?>
<div class="alert alert-success text-center">
<?php echo $_SESSION['info']; ?>
</div>
<?php
}
?>
<form action="login-user.php" method="POST">
<div class="form-group">
<input class="form-control button" type="submit" name="login-now" value="Login Now">
</div>
</form>
</div>
<div class="vr"></div>
<img src="./public/assets/SoulMate (3).png" alt="logo" height="100">
</div>
</div>
</body>
</html>