-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
155 lines (155 loc) · 5.12 KB
/
index.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="CAPSTONE PROJECT - FRONTEND - 2 - GROUP 225 - SIDE HUSTLE INTERNSHIP 5.0"
/>
<title>CAPSTONE PROJECT - FRONTEND - 2 - GROUP 225</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="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<header>
<nav>
<a href="" class="logo">GROUP 225</a>
<ul class="">
<li><a href="">About</a></li>
<li><a href="">Products</a></li>
<li>
<a href="#getstarted" class="cta bg-linear-blue">Register</a>
</li>
<li><a href="" class="cta bg-linear-red">Login</a></li>
</ul>
<div id="mobile-menu">
<i class="bi bi-list"></i>
</div>
</nav>
<section class="container-md text-center text-sm-start">
<div class="row align-items-center">
<div class="col-12 col-sm-7">
<h1 class="display-2 fw-bold">
<span class="text-linear-blue1">Take control</span> of your
payments today.
</h1>
<p class="lead lh-md mt-4">
Make instant payments in the most urgent conditions, and even in
the comfort of your home.
</p>
<a href="#getstarted" class="my-2 cta bg-linear-red gs"
>Get Started</a
>
</div>
<div class="col-12 col-sm-5">
<img src="images/cube_img.png" alt="cube image" />
</div>
</div>
</section>
</header>
<main id="getstarted">
<form action="" class="">
<div class="alert d-none" role="alert"></div>
<div class="row gap-4">
<div class="col-12">
<label for="username" class="form-label fs-4">Username</label>
<input
type="text"
class="form-control p-3"
name="username"
id="username"
required
data-pattern="^[a-zA-Z_]\w{2,14}$"
data-msg="Invalid Username entered, minimum of 3 and maximum of 15"
/>
<span class="error"></span>
</div>
<div>
<label class="form-label fs-4" for="email">Email</label>
<input
class="form-control p-3"
type="email"
name="email"
id="email"
required
data-pattern="^[a-zA-Z_\.]\w{2,}@\w{3,}\.\w{2,6}"
data-msg="Invalid email entered"
/>
<span class="error"></span>
</div>
<div>
<label class="form-label fs-4" for="phone">Phone Number</label>
<input
class="form-control p-3"
type="tel"
name="phone"
id="phone"
data-pattern="^0[345789][01]\d{8}$"
data-msg="Invalid Nigeria phone entered"
required
/>
<span class="error"></span>
</div>
<div class="pass">
<label class="form-label fs-4" for="pass">Password</label>
<input
class="form-control p-3"
type="password"
name="pass"
id="pass"
data-pattern="^[a-zA-Z]\w{5,14}$"
data-msg="Invalid password entered, minimum of 6 characters and maximum of 15 starting with a letter"
required
/>
<span class="error"></span>
<i class="bi bi-eye-slash"></i>
<div class="icon"></div>
</div>
<div>
<label class="form-label fs-4" for="cpass">Confirm Password</label>
<input
class="form-control p-3"
type="password"
name="cpass"
id="cpass"
data-msg="Password does not match"
required
/>
<span class="error"></span>
</div>
<div class="d-flex justify-content-center">
<input
type="submit"
class="cta bg-linear-red text-white gs"
value="Submit"
/>
</div>
</div>
</form>
</main>
<footer class="text-center p-4">
Copyright ©
<script>
document.write(new Date().getFullYear());
</script>
. GROUP 225 Project 2
</footer>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"
></script>
<script src="index.js"></script>
</body>
</html>