-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpassword-changed.html
More file actions
58 lines (47 loc) · 1.59 KB
/
password-changed.html
File metadata and controls
58 lines (47 loc) · 1.59 KB
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
<!-- <?php require_once "controllerUserData.php"; ?>
<?php
if($_SESSION['info'] == false){
header('Location: Signin.php');
}
?> -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>For Login | StudySkill</title>
<link rel="shortcut icon" href="img/favicon.ico">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link href="https://unpkg.com/boxicons@2.0.7/css/boxicons.min.css" rel="stylesheet" />
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<!-- CSS -->
<link rel="stylesheet" href="css/signin-small.css" />
<!-- Boxicons CSS -->
<link href="https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<div class="logo">
<i class="bx bx-book icon"></i>
<div class="logo_name">StudySkill</div>
</div>
<h>Login Form</h>
<!-- <h>Let's dive in :)</h> -->
<!-- <?php
if(isset($_SESSION['info'])){
?>
<div class="alert alert-success text-center">
<?php echo $_SESSION['info']; ?>
</div>
<?php
}
?><br> -->
<form action="password-changed.php" method="POST">
<div class="input-field button">
<input type="submit" type="submit" name="login-now" value="Login Now"/>
</div>
</form>
</div>
</body>
</html>