[go: up one dir, main page]

0% found this document useful (0 votes)
6 views2 pages

HTML Code

This document is an HTML template for a login form titled 'Login Form | Group Four'. It includes fields for username and password, a 'Remember Me' checkbox, a 'Forgot Password?' link, and a button to submit the form. Additionally, there is a prompt for users to register if they do not have an account.

Uploaded by

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

HTML Code

This document is an HTML template for a login form titled 'Login Form | Group Four'. It includes fields for username and password, a 'Remember Me' checkbox, a 'Forgot Password?' link, and a button to submit the form. Additionally, there is a prompt for users to register if they do not have an account.

Uploaded by

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

<!

DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-


scale=1.0">

<title>Login Form | Group Four</title>

<link rel="stylesheet" href="styles.css">

<link href='https://cdn.boxicons.com/fonts/basic/boxicons.min.css'
rel='stylesheet'>

</head>

<body>

<div class="wrapper">

<form action="">

<h1>Login</h1>

<div class="input-box">

<input type="text" placeholder="Username" required>

<i class="bx bx-user" ></i>

</div>

<div class="input-box">

<input type="password" placeholder="Password" required>

<i class="bx bx-lock" ></i>

</div>

<div class="remember-forgot">

<label><input type="checkbox"> Remember Me</label>

<a href="#">Forgot Password?</a>

</div>

<button type="submit" class="btn">Login</button>

<div class="register-link">

<p>Don't have an account? <a href="#">Register</a></p>


</div>

</form>"

</div>

</body>

</html>

You might also like