34 lines
1011 B
HTML
34 lines
1011 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="icon" href="../assets/hard-disk.ico" type="image/x-icon">
|
|
<title>Login</title>
|
|
<link rel="stylesheet" href="../css/login.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>DO WE KNOW</h1>
|
|
<h1>EACH OTHER?</h1>
|
|
</div>
|
|
<div class="signup-form">
|
|
<form action="/signup" method="post">
|
|
<div class="signup-form-title">
|
|
<h2>Login</h2>
|
|
<hr>
|
|
</div>
|
|
<div class="signup-form-content">
|
|
<input type="email" name="email" placeholder="Email">
|
|
<input type="password" name="password" placeholder="Password">
|
|
</div>
|
|
<div class="signup-form-footer">
|
|
<button type="submit" name="submit">Submit</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|