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

Index

This document is an HTML template for a simple login form. It includes fields for email and password, as well as links for password recovery and buttons for registration and signing in. The form is styled using an external CSS file and includes a JavaScript file for functionality.

Uploaded by

1316 이호준
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)
5 views1 page

Index

This document is an HTML template for a simple login form. It includes fields for email and password, as well as links for password recovery and buttons for registration and signing in. The form is styled using an external CSS file and includes a JavaScript file for functionality.

Uploaded by

1316 이호준
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">
<title>Simple Login Form Example</title>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?
family=Rubik:400,700'><link rel="stylesheet" href="./style.css">

</head>
<body>
<!-- partial:index.partial.html -->
<div class="login-form">
<form>
<h1>Login</h1>
<div class="content">
<div class="input-field">
<input type="email" placeholder="Email" autocomplete="nope">
</div>
<div class="input-field">
<input type="password" placeholder="Password" autocomplete="new-password">
</div>
<a href="#" class="link">Forgot Your Password?</a>
</div>
<div class="action">
<button>Register</button>
<button>Sign in</button>
</div>
</form>
</div>
<!-- partial -->
<script src="./script.js"></script>

</body>
</html>

You might also like