Skip to content

Commit

Permalink
Merge pull request #6667 from adithziva/patch-2
Browse files Browse the repository at this point in the history
Create Login-page.html
  • Loading branch information
ossamamehmood authored Oct 31, 2023
2 parents 54a1119 + 42dfbb6 commit ba13ea5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Add Code Here/HTML/Login-page.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>Login Page</title>
</head>
<body>
<h2>Login</h2>
<form action="login_process.php" method="post">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required><br><br>

<label for="password">Password:</label>
<input type="password" id="password" name="password" required><br><br>

<input type="submit" value="Login">
</form>
</body>
</html>

0 comments on commit ba13ea5

Please sign in to comment.