-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
115 lines (94 loc) · 4.77 KB
/
signup.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
111
112
113
114
115
<!--
Copyright (c) 2023 Hakeem Ellis
All rights reserved.
This work is licensed under the terms of the Custom Code license.
For a copy, see https://github.com/hakeemellis/portfolio/blob/main/LICENSE.md.
Contact: utilize the contact form at https://hakeemellis.com/
-->
<!DOCTYPE html>
<html>
<!--STARTER ELEMENTS-->
<head>
<title>Signup|MacLove</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="shortcut icon" href="images/ML.png">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<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=Lora:wght@700&family=Roboto&family=Roboto+Condensed&family=Shalimar&family=Teko:wght@600&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<!--STARTER ELEMENTS-->
<!--MAIN CONTENT-->
<body>
<section class="gradient-custom">
<div class="container-fluid p-0">
<div class="row justify-content-center align-items-center m-0">
<div class="col-12 col-md-8 col-lg-6 col-xl-5 center-card">
<div class="card bg-dark text-white" style="border-radius: 1rem;">
<div class="card-body p-5 text-center">
<div class="mb-md-5 mt-md-4 pb-5">
<a href="index.html"><img src="images/MacLove 1.png"></a>
<br>
<br>
<p class="fw-bold mb-2 text-uppercase signup"></p>
<form onsubmit="return verifyPassword()" id="myForm" class="needs-validated" action="index.html">
<div class="row">
<div class="col-md-6 mb-4">
<div class="form-outline">
<input type="text" placeholder="First Name" id="form3Example1" class="form-control form-control-lg" required>
<div class="valid-feedback"></div>
<div class="invalid-feedback"></div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="form-outline">
<input type="text" placeholder="Last Name" id="form3Example2" class="form-control form-control-lg" required>
<div class="valid-feedback"></div>
<div class="invalid-feedback"></div>
</div>
</div>
</div>
<div class="form-outline mb-4">
<input type="email" placeholder="Email" id="typeEmailX" class="form-control form-control-lg" />
</div>
<div class="form-outline mb-4">
<input name="password" type="password" placeholder="Create Password" id="password" class="form-control form-control-lg" required>
<div class="valid-feedback"></div>
<div class="invalid-feedback"></div>
<span id="message" style="color:red"></span>
<p class="spass"><input type="checkbox" onclick="myFunction()"></p>
</div>
<div class="form-outline mb-4">
<input name="confirmPassword" type="password" placeholder="Confirm Password" id="confirmpassword" class="form-control form-control-lg" required>
<div class="valid-feedback"></div>
<div class="invalid-feedback"></div>
<small id="confirmPassword-feedback"></small>
<p class="spass"><input type="checkbox" onclick="myFunction1()"></p>
</div>
<button class="btn btn-outline-light btn-lg px-5 signup" type="submit"></button>
</form>
</div>
<div>
<p class="mb-0 haccount"> <a href="login.html" class="text-white-50 fw-bold login1"></a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="preloader-wrapper">
<div class="spinner-grow text-danger" style="width: 3rem;height: 3rem;">
<span class="visually-hidden">Loading...</span>
</div>
</div>
</body>
<!--MAIN CONTENT-->
<!--SCRIPTS-->
<script src="js/jquery.js"></script>
<script src="js/main.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous"></script>
<!--SCRIPTS-->
</html>