blob: 106147bf45d4c08456c69bd6729656c96f8df364 (
plain) (
blame)
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
|
<!DOCTYPE html>
<style>
h1 { text-align: center }
form {
display: table;
margin: 0 auto;
}
p { display: table-row }
.cell {
margin: 0.2em 0;
}
</style>
<script>
function check() {
const AGE = document.getElementById('age').value;
// Number check is already handled by the number input.
if (AGE < 0)
alert('Age must be nonnegative.');
const EMAIL = document.getElementById('email').value;
if (EMAIL.match(/\w+@\w+\.\w+/) === null)
alert('Invalid email!');
const USER = document.getElementById('user').value;
if (USER === '')
alert('Your username is blank! Please enter a nonempty username.');
const PW = document.getElementById('pw').value;
const PW2 = document.getElementById('pw2').value;
if (PW != PW2)
alert('Your password and confirmation password do not match!');
}
</script>
<html>
<body>
<h1>Sign Up</h1>
<form>
<p>
<label class=cell for=name>Full name: </label>
<input class=cell type=text id=name>
</p>
<p>
<label class=cell for=gender>Gender: </label>
<select name=gender id=gender>
<option value=''>-Select one-</option>
<option value=male>Male</option>
<option value=female>Female</option>
<option value=other>Other</option>
</select>
</p>
<p>
<label class=cell for=age>Age: </label>
<input class=cell type=number id=age>
</p>
<p>
<label class=cell for=email>Email: </label>
<input class=cell type=email id=email>
</p>
<p>
<label class=cell for=user>Username: </label>
<input class=cell type=text id=user>
</p>
<p>
<label class=cell for=pw>Password: </label>
<input class=cell type=password id=pw>
</p>
<p>
<label class=cell for=pw2>Re-type Password: </label>
<input class=cell type=password id=pw2>
</p>
<p>
<span class=cell></span>
<span class=cell>
<input type=reset value=Clear>
<input type=button onclick='check()' value=Submit>
</span>
</p>
</form>
</body>
</html>
|