-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignUp.html
More file actions
62 lines (56 loc) · 2.68 KB
/
Copy pathSignUp.html
File metadata and controls
62 lines (56 loc) · 2.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>
Sign-Up Page
</title>
<link rel="Stylesheet" href="SignUp.css">
</head>
<body background="loginwallpaper.jpg">
<table border=5 width=500 height=300 id="Login" bgcolor=white>
<tr>
<td style="border:0px;padding-top:27px">
<span style="font-size:40px;padding-left:28%">Sign Up</span><br>
<span style="padding-left:2%;font-size:12px">Please fill in this form to create an account</span>
<form>
<table id="LoginInside" border=0 cellpadding=6px width=500 height=300>
<tr>
<td>
<span>Name<span style="color:green">*</span></span><br>
<input type="text" placeholder="Enter Full Name" required></input>
</td>
</tr>
<tr>
<td>
<span>Email Address<span style="color:green">*</span></span><br>
<input type="email" placeholder="Enter Email Address" required></input>
</td>
</tr>
<tr>
<td>
<span>UserName<span style="color:green">*</span></span><br>
<input type="text" placeholder="Enter UserName" required></input>
</td>
</tr>
<tr>
<td>
<span>Password<span style="color:green">*</span></span><br>
<input type="password" placeholder="Enter Password" required></input><br><br>
<input type="password" placeholder="Re-Enter Password" required></input><br>
</td>
</tr>
<tr>
<td align=right>
<button id="buttonLogin">Sign Me UP!</button><br><br>
<span style="font-size:17px">Already have an Account?<a href="Login.html">Sign in</a></span>
</td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</body>
</html>
<!-- <h4 style="text-align:right;font-family:courier">Forget Password?</h4>-->