-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathFile4_Signup
More file actions
125 lines (99 loc) · 3.04 KB
/
Copy pathFile4_Signup
File metadata and controls
125 lines (99 loc) · 3.04 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
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
114
115
116
117
118
119
120
121
122
123
124
125
<!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>SIGNUP</title>
<script src="https://kit.fontawesome.com/64f4ba1195.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Baloo+Bhai|Bree+Serif&display=swap" rel="stylesheet">
<style>
body {
padding: 0px;
margin: 0px;
background-image: url('pj02/fast-food.jpg');
background-repeat: no-repeat;
background-size: 1280px 577px;
}
.sign {
font-family: 'Baloo Bhai', cursive;
display: flex;
justify-content: center;
font-size: 60px;
}
.container {
width: 305px;
height: 390px;
border: 4px solid red;
border-radius: 20px;
margin-left: 18%;
margin-top: 5%;
box-shadow: 120px 10px 160px red inset;
}
.names {
margin-left: 60px;
font-family: 'Baloo Bhai', cursive;
font-size: 30px;
}
.names1 {
margin-left: 100px;
cursor: pointer;
}
.names input {
border: none;
font-size: 15px;
height: 25px;
/* border-radius: 30px; */
border: 2px solid black;
}
.names1 input {
font-size: 18px;
height: 45px;
border-radius: 90px;
border: none;
border: 2px solid black;
padding: 12px;
}
.names1 :hover {
background-color: yellow;
font-weight: bold;
}
.mem {
margin-left: 52px;
font-size: 18px;
padding: 10px;
font-weight: bold;
}
a:link {
color: rgb(52, 233, 173);
text-decoration: none;
}
</style>
</head>
<body>
<form action="backend.php">
<div class="container">
<div class="sign">SIGN UP</div>
<div class="names">
<input type="email" name="myemail" placeholder="    ENTER YOUR EMAIL">
</div>
<div class="names">
<input type="text" name="myname" placeholder="    ENTER YOUR NAME">
</div>
<div class="names">
<input type="text" name="myusername" placeholder="    ENTER USERNAME">
</div>
<div class="names">
<input type="password" name="mypassword" placeholder="    ENTER PASSWORD">
</div>
<br>
<div class="names1">
<input type="submit" value="SIGN UP">
</div>
<div class="mem">Already A Member?
<a href="login.html" target="_blank">LOGIN</a>
</div>
</div>
</form>
</body>
</html>