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

Sony 4

The document contains HTML code for two types of login forms: a basic login form and a modern login form. Each form includes fields for username/email and password, as well as a 'Keep me logged in' checkbox for the basic form. The document also links to an external CSS stylesheet for styling purposes.

Uploaded by

shalomkusuma2004
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)
12 views1 page

Sony 4

The document contains HTML code for two types of login forms: a basic login form and a modern login form. Each form includes fields for username/email and password, as well as a 'Keep me logged in' checkbox for the basic form. The document also links to an external CSS stylesheet for styling purposes.

Uploaded by

shalomkusuma2004
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

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Forms</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>

<!-- Basic Login Form -->


<div class="box">
<form>
<label>Username:</label>
<input type="text" name="username"><br><br>
<label>Password:</label>
<input type="password" name="password"><br><br>
<input type="checkbox"> Keep me logged in
<button type="submit" class="btn">Login</button>
</form>
</div>

<!-- Modern Login Form -->


<div class="login-box">
<h2>Login</h2>
<form>
<div class="input-box">
<input type="email" placeholder="Email">
</div>
<div class="input-box">
<input type="password" placeholder="Password">
</div>

You might also like