-
Notifications
You must be signed in to change notification settings - Fork 1
/
flogin.php
113 lines (99 loc) · 1.94 KB
/
flogin.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html>
<head>
<title>Form</title>
<style>
*{
box-sizing: border-box;
}
body{
background-color: aquamarine;
}
a{
text-decoration: none;
color: darkslateblue;
}
#body-box{
width: 99%;
height: 820px;
margin: 0 auto;
border-color: red;
border-width: 10px;
border-style: groove;
}
#middle-div{
width: 50%;
height: 700px;
margin: 0 auto;
}
#web-head{
width: 55%;
height: 100px;
padding: 5px;
margin: 0 auto;
margin-top: 30px;
margin-bottom: 35px;
}
h1{
text-align: center;
font-weight: bold;
font-size: 50px;
font-family: sans-serif;
}
#signin-fieldset{
width: 55%;
height: 210px;
margin: 0 auto;
border-color: black;
border-width: 2px;
border-style: dashed;
border-radius: 10px;
}
table{
margin: 0 auto;
margin-top: 25px;
}
td{
font-size: 17px;
font-family: inherit;
}
legend{
font-family: cursive;
font-size: 25px;
font-weight: bold;
}
#submit-btn{
width: 100px;
height: 40px;
margin: 0 auto;
background-color: cadetblue;
}
</style>
</head>
<body>
<div id="body-box">
<div id="middle-div">
<div id="web-head"><h1>myshop<font color="red">.com</font></h1></div>
<form method="post" action="login.php">
<fieldset id="signin-fieldset">
<legend>Sign In</legend>
<table>
<td>E-mail id</td>
<td><input type="email" name="loginmail" required="required"></td>
<tr>
<td>Password</td>
<td><input type="password" name="loginpassword" required="required"></td>
</tr>
<tr colspan="2">
<td colspan="2">
<input type="submit" id="submit-btn" name="loginbtn" value="Login Now">
<a href="fregister.php">Sign Up</a>
</td>
</tr>
</table>
</fieldset>
</form>
</div>
</div>
</body>
</html>