1
2 <!DOCTYPE html>
3 <html>
4 <head>
5 <title>Welcome To Login Form</title>
6 </head>
7
8 <body>
9 <!-- Main div code -->
10 <div id="main">
11 <div class="h-tag">
12 <h2>Welcome To My Account Login</h2>
13 </div>
14 <!-- Login box -->
15 <div class="login">
16 <table cellspacing="2" align="center" cellpadding="8" border="0">
17 <tr>
18 <td>Enter User Name :</td>
19 <td><input type="text" placeholder="Enter user name here" id="email" class="tb" /></td>
20 </tr>
21 <tr>
22 <td>Enter Password :</td>
23 <td><input type="password" placeholder="Enter Password here" id="pwd1" class="tb" /></td>
24 </tr>
25 <tr>
26 <td></td>
27 <td>
28 <input type="submit" value="Reset" onclick="clearFunc()" class="btn" />
29 <input type="submit" value="Login" class="btn" onClick="login()" /></td>
30 </tr>
31 </table>
32 </div>
33 <!-- login box div ending here.. -->
34 </div>
35 <!-- Main div ending here... -->
36
37 </body>
38 </html>
39
40
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