Meteo_API/static/login.html

20 lines
524 B
HTML
Raw Normal View History

2024-06-10 09:13:47 +00:00
<!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>