-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sign Up.html
55 lines (44 loc) · 989 Bytes
/
Sign Up.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
<html>
<head>
<title>Sign Up</title>
<style>
body{ left: 25%;
position: relative;
}
div.ex1 {
background-color : yellow;
padding: 20px;
width: 50%;
}
div.ex2 {
background-color : yellow;
padding : 20px;
width: 50%;
}
div.ex3 {
background-color : yellow;
padding : 20px;
width: 50%;
}
input {
left : 300px;
position: absolute;
}
</style>
</head>
<body>
<h2 style="text-align: center; color: black;" >ReGiSter NoW</h2>
<p>Name</p>
<div class="ex1">First Name<input type="text" placeholder="First Name"/><br></br>
Last name <input type="text" placeholder="Last Name"/>
</div>
<br>
<p>Email</p>
<div class="ex2">Email Address<input type="text;" placeholder="Email Address"/></div>
<br>
<p>Password</p>
<div class="ex3">Password<input type="password" placeholder="Password"/><br></br>
Confirm Password<input type="password" placeholder="Confirm Password"/>
</div>
</body>
</html>