Files
Login-Form/login.html

28 lines
871 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Log in</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="normalize.css">
<script src="./scripts/login.js"></script>
</head>
<body>
<header class="header-login">
<a href="./index.html">
<div class="back-arrow"></div>
</a>
<h1>Log in on the website</h1>
</header>
<div>
<form action="./logic/login.php" method="POST">
<input type="text" placeholder="User" class="input-1">
<input type="password" placeholder="Password" class="input-2">
<input type="submit" value="Send" class="submit">
</form>
</div>
</body>
</html>