Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions tan4regform.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,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>