-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathtan4regform.html
59 lines (53 loc) · 2.6 KB
/
tan4regform.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
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="regform_css.css">
<title>Registration Form</title>
</head>
<body>
<form action="http://localhost/tanisha/test1.php" method="post">
<center>
<div class="reg">
<form action="#" method="post">
<form action="" class="inner">
<h1>Registration Form</h1>
<img src="c:\Users\tanis\Documents\Mern Course\img_avatar2.png" alt="Registration">
<table cellspacing="3">
<tr>
<td><label for="Name"><strong>Name: </strong></label></td>
<td><input type="text" name="Nm" placeholder="Enter Name" required style="width: 200px; height:30px ;"></td>
</tr>
<tr>
<td><label for="Course"><b>Course: </b></label></td>
<td><input type="text" name="Cr" placeholder="Enter Course" required style="width: 200px; height:30px ;"></td>
</tr>
<tr>
<td><label for="College Name"><b>College Name: </b></label></td>
<td><input type="text" name="Cn" placeholder="Enter College Name" style="width: 200px; height: 30px;"> </td>
</tr>
<tr>
<td><label for="Project"><b>Project: </b></label></td>
<td><input type="text" name="Pr" placeholder="Enter Project Name" style="width:200px; height: 30px; "> </td>
</tr>
<tr>
<td><label for="Email Id"><b>Email Id: </b></td>
<td><input type="text" name="Em" placeholder="Enter Email Id" required style="width: 200px; height:30px;"></td>
</tr>
<tr>
<td><label for="Contact Number"><b>Contact Number: </b></label></td>
<td><input type="text" name="Cnum" placeholder="Enter Contact Number" style="width: 200px; height: 30px;"></td>
</tr>
<tr class="Submit" rowspan="2">
<td><input type="button" value="Submit" class="btn1" style="width: 150px; height: 30px;"></td>
</tr class="Cancel" rowspan="2">
<td><input type="button" value="Cancel" class="btn2" style="width: 150px; height: 30px;"></td>
</tr>
</table>
</form>
</div>
</center>
</form>
</body>
</html>