-
Notifications
You must be signed in to change notification settings - Fork 0
/
Design 2 Assignment.html
75 lines (62 loc) · 3.23 KB
/
Design 2 Assignment.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
<!DOCTYPE html>
<html>
<head>
<title Align="Center"> Sign Up Form </title>
</head>
<body>
<table border="2" bordercolor = "White" bgcolor ="Black" cellpadding ="3" cellspacing="5" align="center">
<form>
<th colspan="3" bgcolor="orange" > Sign-up </th>
<tr>
<td style="color: rgb(236, 240, 244)">First Name: </td>
<td colspan="2"><input type="text" name="firstname"></td>
</tr>
<tr>
<td style="color: rgb(236, 240, 244)">Last Name: </td>
<td colspan="2"><input type="text" name="lastname"></td>
</tr>
<tr>
<td style="color: rgb(236, 240, 244)"><label for="dob">Date of Birth:</label></td>
<td> <input type="date" id="dob" name="dob"> </td>
</tr>
<tr>
<td rowspan="1" style="color: rgb(236, 240, 244)" > Gender </td>
<labelfor="gender" Gender: </label>
<td colspan="2" style="color: rgb(236, 240, 244)"> <input type="radio" id="gender" name="gender" value="Male"/>Male
<input type="radio" id="gender" name="gender" value="Female"/>Female </td>
</tr>
<tr>
<td style="color: rgb(236, 240, 244)"><label for="country"> Country: </label></td>
<td colspan="2"><select id="textarea" name="Country">
<option value="">Country</option>
<option value="India">India</option>
<option value="China">China</option>
<option value="USA">USA</option>
<option value="Sri Lanka">Sri Lanka</option>
</select></td>
</tr>
<tr>
<td style="color: rgb(236, 240, 244)"><label for="email"> E-mail:</label></td>
<td><input typ="email" id="email" name="email"></td>
</tr>
<tr>
<td style="color: rgb(236, 240, 244)"><label for="phone">Phone Number: </label></td>
<td><input type="tel" id="phone" name="phone"></td>
</tr>
<tr>
<td style="color: rgb(236, 240, 244)"><br><label for="password"> Password:</td>
<td colspan="2"></label><input type="password" id="password" name="password"></td>
</tr>
<tr>
<td style="color: rgb(236, 240, 244)"><label for="confirm_password">Confirm Password:</label></td>
<td><input type="password" id="confirm_password" name="confirm_password" required></td>
</tr>
<tr>
<td colspan="2" align="right" style="color: rgb(242, 250, 126)"> <input type="checkbox" id="I agree to the terms of use" name="I agree to the terms of use" value="I agree to the terms of use"> <label for="I agree to the terms of use"> I agree to the terms of use </label></td>
</tr>
<tr>
<tfoot><td align="right" colspan="2" >
<input type="submit" value="submit">
<input type="reset" value="Cancel">
</td></tfoot>
</tr>