mirror of
https://github.com/Nezumi-2711/typescript-practice.git
synced 2026-09-22 05:41:57 +00:00
50 lines
1.6 KiB
HTML
50 lines
1.6 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="shortcut icon" href="../assets/images/favicon.ico" />
|
|
<link rel="stylesheet" href="../styles/_main.scss" />
|
|
<title>Login - Money Lover</title>
|
|
</head>
|
|
<body class="login-page">
|
|
<main>
|
|
<div class="background">
|
|
<div class="wrapper">
|
|
<img
|
|
class="logo-web"
|
|
src="../assets/images/logo.svg"
|
|
alt="Logo web"
|
|
/>
|
|
<!-- Log in form -->
|
|
<form action="#" class="form" method="post" id="loginForm">
|
|
<div class="form__container">
|
|
<h1 class="form__title">Log In</h1>
|
|
<p class="form__description">Using Money Lover account</p>
|
|
<input
|
|
type="text"
|
|
class="form__input"
|
|
placeholder="Email"
|
|
name="email"
|
|
/>
|
|
<input
|
|
type="password"
|
|
name="password"
|
|
class="form__input"
|
|
placeholder="Password"
|
|
/>
|
|
<button type="submit" class="form__submit-btn">Login</button>
|
|
<p class="form__redirect-signup-text">
|
|
Don't have an account?
|
|
<a href="/register" class="form__link">Register</a>
|
|
</p>
|
|
</div>
|
|
</form>
|
|
<!-- End form -->
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<script type="module" src="../ts/index.ts"></script>
|
|
</body>
|
|
</html>
|