-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (85 loc) · 1.51 KB
/
index.html
File metadata and controls
86 lines (85 loc) · 1.51 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Form W5D5</title>
<link rel="stylesheet" href="style.css">
</head>
<body onload="captcha()">
<div class="container">
<h2>Registration Form</h2>
<form id="forms" action="#">
<table>
<tr>
<td>Username :</td>
</tr>
<tr>
<td>
<input id="user" type="text">
<p id="inputUser"></p>
</td>
</tr>
<tr>
<td>Password :</td>
</tr>
<tr>
<td>
<input id="password" type="password">
<p id="inputPass"></p>
</td>
</tr>
<tr>
<td>Confirm Password :</td>
</tr>
<tr>
<td>
<input id="conPassword" type="password">
<p id="inputConPass"></p>
</td>
</tr>
<tr>
<td>Email :</td>
</tr>
<tr>
<td>
<input id="email" type="email">
<p id="inputEmail"></p>
</td>
</tr>
<tr>
<td>Confirm Email :</td>
</tr>
<tr>
<td>
<input id="conEmail" type="email">
<p id="inputConEmail"></p>
</td>
</tr>
<tr>
<td>Are you human?</td>
</tr>
<tr>
<td>
<input id="captcha" type="text" readonly>
<a onclick="captcha()" href="#">Refresh</a>
</td>
</tr>
<tr>
<td>
<input id="inputCaptcha" type="text">
<p id="inputUsCaptcha"></p>
</td>
</tr>
<tr>
<td>
<center>
<input id="submit" type="submit">
</center>
</td>
</tr>
</table>
</form>
</div>
<script src="script.js"></script>
</body>
</html>