mirror of
https://github.com/Nezumi-2711/javascript-training.git
synced 2026-09-22 20:01:31 +00:00
61 lines
2.0 KiB
HTML
61 lines
2.0 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>
|
|
<!-- <div class="loader hidden"></div> -->
|
|
<!-- <div class="overlay"></div>
|
|
<div class="modal-box success-form">
|
|
<div class="mark check"></div>
|
|
<h2 class="modal-box__title">Register success!</h2>
|
|
<p class="modal-box__message">Please login to continue.</p>
|
|
|
|
<button class="modal-box__redirect-btn">OK!</button>
|
|
</div> -->
|
|
<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>
|
|
<script type="module" src="../js/controller.js"></script>
|
|
</body>
|
|
</html>
|