-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration.html
50 lines (47 loc) · 2.5 KB
/
registration.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html data-bs-theme="light" lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Register - Anyw3ar</title>
<link rel="stylesheet" href="/assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:400,400i,700,700i,600,600i&display=swap">
<link rel="stylesheet" href="/assets/css/baguetteBox.min.css">
<link rel="stylesheet" href="/assets/css/Custom.css">
<link rel="stylesheet" href="/assets/css/vanilla-zoom.min.css">
</head>
<body>
<nav class="navbar navbar-expand-lg fixed-top bg-body clean-navbar navbar-brand">
<div class="container"><a class="navbar-brand logo" href="#">
<picture><img src="/assets/img/logo/logo-graphic-plein-black.png" style="height: 50px;"></picture>
</a>
<div class="card" style="background-color: #c80815;"></div>
</div>
</nav>
<main class="page registration-page">
<section class="clean-block clean-form dark">
<div class="container">
<div class="block-heading">
<h2 class="text-info">Registration</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.</p>
</div>
<form>
<div class="mb-3"><label class="form-label" for="name">Name</label><input class="form-control item" type="text" id="name" data-bs-theme="light"></div>
<div class="mb-3"><label class="form-label" for="password">Password</label><input class="form-control item" type="password" id="password" data-bs-theme="light"></div>
<div class="mb-3"><label class="form-label" for="email">Email</label><input class="form-control item" type="email" id="email" data-bs-theme="light"></div><button class="btn btn-primary" type="submit">Sign Up</button>
</form>
</div>
</section>
</main>
<footer class="page-footer dark">
<div class="footer-copyright">
<p>© 2023 ANYW3AR, P2ENJOY</p>
</div>
</footer>
<script src="/assets/bootstrap/js/bootstrap.min.js"></script>
<script src="/assets/js/bs-init.js"></script>
<script src="/assets/js/baguetteBox.min.js"></script>
<script src="/assets/js/vanilla-zoom.js"></script>
<script src="/assets/js/theme.js"></script>
</body>
</html>