20 lines
No EOL
524 B
HTML
20 lines
No EOL
524 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta lang="en" charset="UTF-8">
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Login</h1>
|
|
<form action="" method="POST">
|
|
<input type="text" placeholder="username/email" class="field">
|
|
<input type="password" placeholder="password" class="field">
|
|
<input type="submit" value="login" class="btn">
|
|
</form>
|
|
<div class="pass-link">
|
|
<a href="#" >Lost your password?</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |