Answer:
The following code are in HTML language:
Login_page.html :
<!DOCTYPE html>
<html lang="en">
<head>
<title>Login_Form</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<form action="Login_page.php" method="post">
<table>
<tr>
<td>UserName</td>
<td>
<input type="text" name="username" placeholder="Username"/>
</td>
</tr>
<tr>
<td>Password</td>
<td>
<input type="password" name="password" placeholder="Password"/>
</td>
</tr>
<tr>
<td>
<input type="Submit" name="login" value="submit"/>
</td>
</tr>
</table>
</form>
</body>
</html>
Explanation:
Here, we have to use the HTML tag, and HEAD tag and the TITLE tag for the title of the page.
Then, we have to create a table for the structure of Form page by using table tag.
Then, we have to create form by using Form tag
Then, create two text boxes for the username and the password with the use of an input tag.
Then, we have to create a submit button for submitting the following details with the use of an input tag.