-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
37 lines (30 loc) · 1.07 KB
/
test.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
<! DOCTYPE html>
<html>
<head>
<title> Registration Form </title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="jquery.min.js">
</script>
<script type="text/javascript">
document.onpaste=new Function("return false");
document.oncopy=new Function("return false");
</script>
</head>
<form method="post" action="" id="rform">
<h1><font size="16"> Registration Form </h1>
<font color="aqua" font size="4" align="left">
<ul>
<li> Please fill up all details... </li>
<div align="left"><br>
<div>First Name: <input type="text" name="fname" value="Enter your First Name here" size="25" ></div>
Last Name: <input type="text" name="lname" value="Enter your Last Name here" size="25" >
E-Mail: <input type="email" value="[email protected]" name="email" oncopy="return false;" required/>
Confirm E-Mail: <input type="email" value="[email protected]" name="email" onpaste="return false;" required/>
Password: <input type="password" value="6-10 char long" name="pwd" />
<script>
$("#rForm").validate();
</script>
</div>
</font>
</form>
</html>