forked from kbalog/web-programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexercise5.html
45 lines (40 loc) · 1.01 KB
/
exercise5.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Exercise #5: Input check</title>
<style>
* {
font-family: Arial, sans-serif;
}
.err {
color: red;
font-size: 0.7em;
}
</style>
<script>
/* TODO complete this part */
</script>
</head>
<body>
<form name="pw">
<table>
<tr>
<td>Password (min 6 characters):</td>
<td><input type="password" name="password1" id="password1" size="10" placeholder="Password"></td>
<td>
<div id="pw1_check" class="err"></div>
</td>
</tr>
<tr>
<td>Repeat password:</td>
<td><input type="password" name="password2" id="password2" size="10" placeholder="Password"></td>
<td>
<div id="pw2_check" class="err"></div>
</td>
</tr>
</table>
<input type="submit" value="Submit" id="submitBtn"/>
</form>
</body>
</html>