-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
80 lines (70 loc) · 2.28 KB
/
signup.html
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
<!DOCTYPE html>
<html>
<head>
<title>Create Form</title>
<style>
/* Write all necessery css here */
body{
display: flex;
justify-content: center;
}
.login{
display: flex;
border: 0px solid green;
width:900px;
justify-content: space-around;
height: auto;
margin-top: 12%;
}
.bag{
width: 177px;
}
.login>div{
text-align: center;
border: 0px solid red;
width: 40%;
height: 95%;
margin-top: 5px;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
</style>
</head>
<body>
<div class="login">
<div>
<h1>Register New Account</h1>
<!-- Create the Signup form here -->
<form id="one" >
<label for="">Name</label><br>
<input id="name" type="text" placeholder="Enter name"><br><br>
<label for="">Email Address</label><br>
<input id="mail" type="email" placeholder="Enter email address"><br><br>
<label for="">Mobile no.</label><br>
<input id="num" type="number"placeholder="Enter mobile number"><br><br>
<label for="">Password</label><br>
<input id="pass" type="text"placeholder="Enter password"><br><br>
<label for=""> Confirm Password</label><br>
<input id="con" type="text"placeholder="Enter password"><br><br>
<button id="bag"></button>
<p>Already Registered? LOGIN</p>
</form>
</div>
<div>
<h1>Login Your Account</h1>
<!-- Create the Signin Form Here -->
<form id="two">
<label for="">Name</label><br>
<input type="text" placeholder="Enter name"><br><br>
<label for="">Email Address</label><br>
<input type="text" placeholder="Enter email address"><br><br>
<label for="">Mobile no.</label><br>
<input type="number"placeholder="Enter mobile number"><br><br>
<label for="">Password</label><br>
<input type="text"placeholder="Enter password"><br><br>
<input class="bag" type="submit" value="Login"><br><br>
</form>
</div>
</div>
</body>
</html>
<script src="signup.js"></script>