HTML y CSS de las 3 paginas listos

This commit is contained in:
2021-05-19 18:51:38 -03:00
commit 5a25331dc9
9 changed files with 564 additions and 0 deletions

28
login.html Normal file
View File

@@ -0,0 +1,28 @@
<!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>