-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogoutpage.php
58 lines (40 loc) · 1.27 KB
/
logoutpage.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="login.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width , initial-scale=1">
</head>
<title>login</title>
<body>
<h1>Your Account</h1>
<div class="login">
<h2>Sign in</h2>
<hr>
<section>
<form action="logincheck.php" method="post">
<?php if (isset($_GET['error'])) { ?>
<p class="success"><?php echo $_GET['error']; ?></p>
<?php }
?>
<br>
<input type="text" name="uname" placeholder=" User Name">
<p>
</p>
<input type="password" name="password" placeholder=" Password">
<p>
<input type="submit" value="Sign In">
</p>
</form>
<a href="forgot.php">Forgot Password?</p></a>
<h4>Not a Member?</h4>
<a href='signup.php'>
<button class="registerb">
<b>Register Here</b>
</button>
</a>
</form>
</section>
</div>
</body>
</html>