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

Index HTML

This document is an HTML template for a login page that includes a header, form fields for username and password, a 'remember me' option, and a link for forgotten passwords. It also features a submit button and credits the creator as Samuel. The page is styled with an external CSS file and includes a JavaScript file for functionality.

Uploaded by

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

Index HTML

This document is an HTML template for a login page that includes a header, form fields for username and password, a 'remember me' option, and a link for forgotten passwords. It also features a submit button and credits the creator as Samuel. The page is styled with an external CSS file and includes a JavaScript file for functionality.

Uploaded by

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

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="login-container">
<div class="login-header">
<h2>Welcome Back</h2>
<p>Please login to continue</p>
</div>

<form id="loginForm" class="login-form">


<div class="form-group">
<label for="username">Username</label>
<input type="text" id="username" name="username" required>
</div>

<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
</div>

<div class="form-options">
<label class="remember-me">
<input type="checkbox" name="remember">
Remember me
</label>
<a href="#" class="forgot-password">Forgot password?</a>
</div>

<button type="submit" class="login-btn">Sign In</button>


</form>

<div class="creator-credit">Created by Samuel</div>


</div>

<script src="script.js"></script>
</body>
</html>

You might also like