39 lines
1.1 KiB
HTML
39 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
|
<link href="../assets/hard-disk.ico" rel="icon" type="image/x-icon">
|
|
|
|
<link href="../css/login.css" rel="stylesheet">
|
|
<link href="../css/transition.css" rel="stylesheet">
|
|
<title>Login</title>
|
|
</head>
|
|
<body onload="fadeIn()">
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>DO WE KNOW</h1>
|
|
<h1>EACH OTHER?</h1>
|
|
</div>
|
|
<form class="login-form" id="loginForm">
|
|
<div class="login-form-title">
|
|
<h2>Login</h2>
|
|
<hr>
|
|
</div>
|
|
<div class="login-form-content">
|
|
<input name="email" placeholder="Email" type="email">
|
|
<input name="password" placeholder="Password" type="password">
|
|
</div>
|
|
<div class="login-form-footer">
|
|
<button id="signup" name="submit" type="button">Sign Up</button>
|
|
<button id="submit" name="submit" type="submit">Submit</button>
|
|
<button id="resetPassword" name="resetPassword" type="button">Reset Password</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<script src="../js/login.js"></script>
|
|
<script src="../js/helpers.js"></script>
|
|
</body>
|
|
</html>
|