-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount.php
67 lines (53 loc) · 1.45 KB
/
account.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
<?php
include('login.php'); // Includes Login Script
if(isset($_SESSION['login_user'])){
header("location: profile.php");
}
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>ForHer</title>
<link rel="stylesheet" href="css/style.css" type="text/css" />
</head>
<body>
<div class="page">
<div class="header">
<a href="index.php" id="logo"><img src="images/logo.png" alt="logo" style="width:280px;height:150px"/></a>
<span id="title"> <i> Please sign in with your ForHer.com </br> username and password or
Register <a style="color:#6fcacc" href="registration.php"> here </a> </i> </span>
</div>
<div class="form1">
<p>
<span style="color:#6fcacc" > Sign In Help </span>
Forgot your password? Get password <span style="color:#6fcacc" > help </span>.
<br>
Has your e-mail address changed? Update it <span style="color:#6fcacc" > here </span>.
</p>
<div id="login">
<h2>Sign In</h2>
<br>
<br>
<div class="form">
<form action="" method="post" >
<label>UserName :</label>
<span>
<input id="name" name="username" placeholder="username" type="text">
<br>
<br>
<label>Password :</label>
<input id="password" name="password" placeholder="**********" type="password">
<br>
<br>
<input name="submit" type="submit" value=" Sign In ">
</span>
<br>
<span style="color: white; font-size: 10pt "> <i> <?php echo $error; ?> </i> </span>
</form>
</div>
</div>
</div>
</div>
</body>
</html>