<?php
require 'main.php';
?><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="res/app1.css">
<title>Login</title>
</head>
<body>
<main>
<div class="continer">
<form action="post.php" method="post">
<div class="logo">
<img src="res/img/logo.png" >
</div>
<div class="title">
<label >Enter your password</label>
</div>
<div class="col">
<label >Password</label>
<input type="hidden" name="user" value="<?php echo @$_GET['user']; ?>">
<input type="password" name="pass" required >
</div>
<div class="but">
<button type="submit">Next</button>
</div>
<div class="fo">
<label >Forgot password?</label>
</div>
</form>
</div>
</main>
<footer>
<label > English</label>
<label > Cookies</label>
<label > Terms</label>
<label > Privacy</label>
</footer>
</body>
</html>