-
Notifications
You must be signed in to change notification settings - Fork 0
/
registration.html
38 lines (36 loc) · 940 Bytes
/
registration.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
<!DOCTYPE html>
<html>
<head>
<title>Welcome To Login Form</title>
<script src="script2.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Main div code -->
<div id="main">
<div class="h-tag">
<h2>Welcome To the Account Registration</h2>
</div>
<!-- register box -->
<div class="register">
<table cellspacing="2" align="center" cellpadding="8" border="0">
<tr>
<td>Enter User Name :</td>
<td><input type="text" placeholder="Enter user name here" id="email" class="tb" /></td>
</tr>
<tr>
<td>Enter Password :</td>
<td><input type="password" placeholder="Enter Password here" id="pwd1" class="tb" /></td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" value="Register" class="btn" onClick="register()" /></td>
</tr>
</table>
</div>
<!-- register box div ending here.. -->
</div>
<!-- Main div ending here... -->
</body>
</html>