-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsign up.html
More file actions
76 lines (64 loc) · 3.75 KB
/
Copy pathsign up.html
File metadata and controls
76 lines (64 loc) · 3.75 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BlackCrest | Sign up</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4Q6Gf2aSP4eDXB8Miphtr37CMZZQ5oXLH2yaXMJ2w8e2ZtHTl7GptT4jmndRuHDT" crossorigin="anonymous">
<link rel="icon" type="img/png" href="./img/project base logo.jpg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&display=swap" rel="stylesheet">
<link href="./css/signup.css" rel="stylesheet">
</head>
<body>
<section class="vh-100 bg-image"
style="background-image: url(#);">
<div class="mask d-flex align-items-center gradient-custom-3">
<div class="container ">
<div class="row d-flex justify-content-center align-items-center">
<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 Account</h2>
<form>
<div data-mdb-input-init class="form-outline mb-4">
<input type="text" id="form3Example1cg" class="form-control form-control-lg" placeholder="Full-Name" />
<label aria-placeholder="hello" class="form-label" for="form3Example1cg"></label>
</div>
<div data-mdb-input-init class="form-outline mb-4">
<input type="email" id="form3Example3cg" class="form-control form-control-lg" placeholder="Email" />
<label class="form-label" for="form3Example3cg"></label>
</div>
<div data-mdb-input-init class="form-outline mb-4">
<input type="password" id="form3Example4cg" class="form-control form-control-lg" placeholder="Password" />
<label class="form-label" for="form3Example4cg"></label>
</div>
<div data-mdb-input-init class="form-outline mb-4">
<input type="password" id="form3Example4cdg" class="form-control form-control-lg" placeholder="Confirm Password"/>
<label class="form-label" for="form3Example4cdg"></label>
</div>
<div class="form-check d-flex justify-content-center mb-5">
<input class="form-check-input me-2" type="checkbox" value="" id="form2Example3cg" />
<label class="form-check-label" for="form2Example3g">
I agree to the <a href="#!" class="text-secondary"><u>Terms of service</u></a>
</label>
</div>
<div class="d-flex justify-content-center">
<button type="submit" data-mdb-button-init
data-mdb-ripple-init class="btn btn-block btn-lg gradient-custom-4 text">Register</button>
</div>
<p class="text-center text- mt-5 mb-0"> Already have an account? <a href="./login.html"
class="fw-bold text-secondary"><u>Login here</u></a></p>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="./js/signup.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/js/bootstrap.bundle.min.js" integrity="sha384-j1CDi7MgGQ12Z7Qab0qlWQ/Qqz24Gc6BM0thvEMVjHnfYGF0rmFCozFSxQBxwHKO" crossorigin="anonymous"></script>
</body>
</html>