-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjoin.html
100 lines (92 loc) · 3.46 KB
/
join.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="join.css" />
</head>
<body>
<section class="vh-100 bg-image" id="join">
<div class="mask d-flex align-items-center h-100 gradient-custom-3">
<div class="container h-100">
<div
class="row d-flex justify-content-center align-items-center h-100"
>
<div class="col-12 col-md-9 col-lg-7 col-xl-6">
<div class="card" style="border-radius: 15px">
<div class="card-body p-5">
<h2 class="text-uppercase text-center mb-5">
Create an account
</h2>
<form>
<div class="form-outline mb-4">
<label class="form-label" for="name">Your Name</label>
<input
type="text"
id="name"
class="form-control form-control-lg"
required
/>
</div>
<div class="form-outline mb-4">
<label class="form-label" for="email">Your Email</label>
<input
type="email"
id="email"
class="form-control form-control-lg"
required
/>
</div>
<div class="form-outline mb-4">
<label class="form-label" for="password">Password</label>
<input
type="password"
id="password"
class="form-control form-control-lg"
required
/>
</div>
<div class="form-outline mb-4">
<label class="form-label" for="repeatPassword"
>Repeat your password</label
>
<input
type="password"
id="repeatPassword"
class="form-control form-control-lg"
required
/>
</div>
<div class="d-flex justify-content-center">
<button
onclick="signup()"
type="button"
class="btn btn-success btn-block btn-lg gradient-custom-4 text-body register"
>
Register
</button>
</div>
<p class="text-center text-muted mt-3 mb-0 login">
Have already an account?
<a href="login.html" class="fw-bold text-body"
><u>Login here</u></a
>
</p>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="join.js"></script>
</body>
</html>