forked from pappuDon11/sanscript-registation-page
-
Notifications
You must be signed in to change notification settings - Fork 1
/
registration.html
55 lines (53 loc) · 1.22 KB
/
registration.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
45
46
47
48
49
50
51
52
53
54
55
<html>
<head>
<title>regform</title>
<link href="samp.css" rel="stylesheet"></link>
</head>
<body style="background-color: aqua";>
<div class="con">
<form name="myForm" action="display.xml" method="get" align="center">
<div class="main">
<table align="center">
<tr><td><b><br>Welcome to Registration Page<br><br></td></tr>
</table>
<div class="con1">
<table align="center">
<tr>
<td>Full Name:</td>
<td><input type="text" id="FirstName" value="" required></input></td>
</tr>
<tr>
<td>Class:</td>
<td><input type="text" id="Class" value="" required></input></td>
</tr>
<tr>
<td>Department:</td>
<td><input type="text" id="Department" value="" required></input></td>
</tr>
<tr>
<td>address:</td>
<td><textarea row="3" column="2" value="" required></textarea></td>
</tr>
<tr>
<td>email Id:</td>
<td><input type="text" value="" id="EMail"
required></input></td>
</tr>
<tr>
<td>phone no:</td>
<td><input type="text" id="ph" value="" required></input></td>
</tr>
<tr>
<tr></tr><tr></tr></table>
<table align="center">
<td><input type="submit" value="SUBMIT" onclick="return
(Validation());"></td>
<td><input type="reset" value="CANCEL"></td>
</tr>
</table>
</div>
</div>
</form>
</div>
</body>
</html>