1<html>
2<head>
3<title>Account</title>
4<style>
5body
6{
7 background-color:#ffda08;
8}
9table
10{
11 border:1px white;
12 margin-top:200px;
13 margin-left:500px;
14 background-color:white;
15 padding:20px
16}
17#btn
18{
19 width:200px;
20 height:50px;
21 background-color:#1ee3d2;
22}
23
24</style>
25</head>
26<body>
27 <form name=frmNewAcc>
28 <table border=0 cellspacing=5px>
29 <tr>
30 <th colspan=3><input class=in =text name=txtuname placeholder="Enter your account name"></th>
31 </tr>
32 <tr>
33 <th colspan=3><input class=in type=password name=txtupass placeholder="Enter your new password"></th>
34 </tr>
35 <tr>
36 <th colspan=3><input class=in type=password name=txtuconfirmpass placeholder="Enter confirmed password"></th>
37 </tr>
38 <tr>
39 <th colspan=3><input id=btn type=button value="Create new account"></th>
40 <a href="Login task 1.html">Go back to login</a>
41 </tr>
42
43
44</table>
45</form>
46</body>
47</html>
48
49
1<input type="text" placeholder="Enter Username" name="username" required> <label>Password : </label> <input type="password" placeholder="Enter Password" name="password" required>