Write a program to login page using Form Tag in html
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Form Tag</title>
</head>
<body>
<table border="1">
<form>
<tr>
<td>Enter Your Name:<input type="text" name="t1" required></td>
</tr>
<tr>
<td>Enter Password:<input type="Password" name="p1" required></td>
</tr>
<tr>
<td><button>Submit</button> <button>Cancle</button></td>
</tr>
</form>
</table>
</body>
</html>
No comments
Welcome to saveracom.blogspot.com