0% found this document useful (0 votes)
11 views1 page

Index. HTML

This document is an HTML code for a simple login form. It includes fields for entering a username and password, along with submit and reset buttons. The form is styled with an external CSS file and is designed to be centered on the page.

Uploaded by

darkkwebb619
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views1 page

Index. HTML

This document is an HTML code for a simple login form. It includes fields for entering a username and password, along with submit and reset buttons. The form is styled with an external CSS file and is designed to be centered on the page.

Uploaded by

darkkwebb619
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<html>

<head>
<title>login </title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="newcss.css" type="text/css">
</head>
<body>
<center>
<h1> sign in</h1>
<form action="" method="post">
<table>
<tr>
<td> User name</td>
<td ><input type="text" name="txtuser" placeholder="Enter
username" required=""></td>
</tr>
<tr>
<td>Password</td>
<td> <input type="password" name="txtpassword"
placeholder="Enter password"></td>
</tr>
<tr>
<td><input type="submit" value="create"></td>
<td><input type="reset" value="clear"></td>
</tr>
</table>

</form>
</center>
</body>
</html>

You might also like