-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignUp.html
More file actions
101 lines (88 loc) · 2.85 KB
/
SignUp.html
File metadata and controls
101 lines (88 loc) · 2.85 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
<html>
<head>
<title>Sign up</title>
<style>
body {
background-image: url(1.jpg);
background-repeat: repeat-x;
background-size: 50% auto;
background-attachment: fixed;
}
.log:hover{
cursor:pointer;
}
.submit {
margin: auto;
display: inline-block;
text-decoration: none;
font-weight: bolder;
font-size: 20px;
font-family: 'Times New Roman', Times, serif;
color: black;
border: 0px;
border-radius:20%;
padding: 7px 10px;
background-color: rgb(218, 120, 218);
margin-top:10px;
text-align:center;
}
.submit:hover{
cursor:pointer
}
table {
width:400px ;
height:800px;
margin:auto;
text-align:center;
border-radius:10%;
margin-top:30px;
background-color:rgba(194, 196, 196, 0.986)
}
input[type="text"],input[type="email"], input[type="password"] {
display: inline-block;
width: 80%;
height: 25px;
border: 0;
outline: 0;
border-bottom: 2px solid black;
background-color:rgba(194, 196, 196, 0.986)
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus{
border-bottom: 3px solid rgb(0, 217, 255);
}
</style>
</head>
<body>
<form action="products.html" method="post">
<table>
<tr>
<td><img src="pass.png" ></td>
</tr>
<tr>
<td><input type="text" required placeholder="Enter your username" name="username" class="fa"/></td>
</tr>
<tr>
<td><img src="mail.png" ></td>
</tr>
<tr>
<td><input type="email" required placeholder="Enter your Email" name="email" class="fa"/></td>
</tr>
<tr>
<td><img src="passs.png" ></td>
</tr>
<tr>
<td><input type="password" required placeholder="Enter your password" class="fa" name="pass" /></td>
</tr>
<tr>
<td><img src="passs.png" ></td>
</tr>
<tr>
<td><input type="password" required placeholder="Rewrite your password" class="fa" name="cnfrmpass" /></td>
</tr>
<tr>
<th><input type="submit" value="sign up" class="submit"/></th>
</tr>
</form>
</table>
</body>
</html>