mirror of
https://github.com/Nezumi-2711/javascript-training.git
synced 2026-09-22 20:01:31 +00:00
58 lines
1.7 KiB
HTML
58 lines
1.7 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="stylesheet" href="../styles/_main.scss" />
|
|
<title>Register - Money Lover</title>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<div class="background">
|
|
<div class="wrapper">
|
|
<img
|
|
class="logo-web"
|
|
src="../assets/images/logo.svg"
|
|
alt="Logo web"
|
|
/>
|
|
<!-- Register form -->
|
|
<form action="#" class="form" method="post" id="registerForm">
|
|
<div class="form__container">
|
|
<h1 class="form__title">Register</h1>
|
|
<p class="form__description">Using Money Lover account</p>
|
|
<input
|
|
type="email"
|
|
class="form__input"
|
|
placeholder="Email"
|
|
name="email"
|
|
required
|
|
/>
|
|
<input
|
|
type="password"
|
|
name="password"
|
|
class="form__input"
|
|
placeholder="Password"
|
|
required
|
|
/>
|
|
<input
|
|
type="password"
|
|
name="password_confirm"
|
|
class="form__input"
|
|
placeholder="Confirm Password"
|
|
required
|
|
/>
|
|
<button type="submit" class="form__submit-btn">Register</button>
|
|
<p class="form__redirect-signup-text">
|
|
Have you an account?
|
|
<a href="/login" class="form__link">Sign in</a>
|
|
</p>
|
|
</div>
|
|
</form>
|
|
<!-- End form -->
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<script type="module" src="../js/main.js"></script>
|
|
</body>
|
|
</html>
|