-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (29 loc) · 798 Bytes
/
index.html
File metadata and controls
39 lines (29 loc) · 798 Bytes
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
<html>
<head> <title> form validation </title> </head>
<body>
<h1>Validations with JS </h1>
<script type="text/javascript" src="validations.js">
</script>
<form onsubmit="return mail()">
<label> user name </label>
<br>
<input type="text" id="un">
<span id="message1"> </span>
<br>
<label>Password: </label><br>
<input type="password" id="pw1" value="" onfocus="return Text1()">
<span id="message2"> </span>
<br>
<label>Confirm Password: </label><br>
<input type="password" id="pw2" value="" onfocus="return Text2()">
<span id="message3"> </span>
<br>
<label>Email : </label>
<br>
<input type="text" id="em" value="" onfocus="return Text3()">
<span id="message4"> </span>
<br>
<button type="submit"> submit </button>
</form>
</body>
</html>