-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration.html
110 lines (90 loc) · 4.47 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!doctype html>
<html lang="en">
<head>
<title>Code: Rare</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS v5.2.1 -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/global.css">
<link rel="stylesheet" href="css/landing.css">
</head>
<body>
<header>
<!-- place navbar here -->
</header>
<main>
<section class="h-100 gradient-form" style="background-color: #eee;">
<div class="container h-100">
<div class="row d-flex justify-content-center align-items-center h-100">
<div class="col-xl-10">
<div class="card rounded-3 text-black">
<div class="row g-0">
<div class="col-lg-6">
<div class="card-body p-md-5 mx-md-4">
<div class="text-center">
<h3 class="mt-1 mb-5 pb-1 fw-bold">CODE: RARE BLOGS</h3>
</div>
<form id="login" autocomplete="off">
<div class="form-outline mb-4">
<label class="form-label" for="username">Username</label>
<input type="text" id="username" minlength="3" autocomplete="off" class="form-control"
placeholder="Enter your username..." />
</div>
<div class="form-outline mb-4">
<label class="form-label" for="fullName">Full Name</label>
<input type="text" id="fullName" minlength="3" autocomplete="off" class="form-control"
placeholder="Enter your full name..."/>
</div>
<div class="form-outline mb-4">
<label class="form-label" for="psw">Password</label>
<input type="password" id="psw" class="form-control" autocomplete="off" placeholder="Enter your password..."/>
</div>
<div class="form-outline mb-4">
<label class="form-label" for="psw-repeat">Password</label>
<input type="password" id="psw-repeat" class="form-control" autocomplete="off" placeholder="Confirm your password..."/>
</div>
<p id="msg"></p>
<div class="text-center pt-1 mb-5 pb-1">
<button class="btn btn-dark btn-block fa-lg mb-3" type="button" id="register">Register User</button>
</div>
<div class="d-flex align-items-center justify-content-center pb-4">
<p class="mb-0 me-2">Already have an account?</p>
<button type="button"
onclick="window.location.href='index.html'"
class="btn btn-outline-dark">Existing Users</button>
</div>
</form>
</div>
</div>
<div class="col-lg-6 d-flex align-items-center gradient-custom-2">
<div class="text-white px-3 py-4 p-md-5 mx-md-4">
<h4 class="mb-4 fw-bolder">Sign up and see the latest news</h4>
<p class="small mb-0">Your own little world at the tips of your fingers. Feel free to shout or quietly rant about the world. Leave your trace.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<footer>
<!-- place footer here -->
</footer>
<!-- Bootstrap JavaScript Libraries -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-7VPbUDkoPSGFnVtYi0QogXtr74QeVeeIs99Qfg5YCF+TidwNdjvaKZX19NZ/e6oz" crossorigin="anonymous">
</script>
<!-- Custom Javascript -->
<script src="scripts/registration.js"></script>
<script src="scripts/auth.js"></script>
</body>
</html>