-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathverification.html
108 lines (64 loc) · 2.79 KB
/
verification.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CV Builder | Forgot Password ?</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="icon" href="logo.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
<style>
body {
height: 100vh;
background: rgb(249, 249, 249);
background: radial-gradient(circle, rgba(249, 249, 249, 1) 0%, rgba(240, 232, 127, 1) 49%, rgba(246, 243, 132, 1) 100%);
}
.form-signin {
max-width: 550px;
padding: 1rem;
}
.form-signin .form-floating:focus-within {
z-index: 2;
}
.form-signin input[type="email"] {
margin-bottom: -1px;
border-radius: 2px;
}
.form-signin input[type="password"] {
margin-bottom: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
</style>
</head>
<body class="d-flex align-items-center">
<div class="w-100">
<main class="form-signin w-100 m-auto bg-white shadow rounded">
<form>
<div class="d-flex gap-2 justify-content-center">
<img class="mb-4" src="logo.png" alt="" height="70">
<div>
<h1 class="h3 fw-normal my-1"><b>CV</b> Maker</h1>
<p class="m-0">Verify your email</p>
</div>
</div>
<div class="mb-3">a 6 digit code sended to
<span class="mb-3 fw-bold">whomonugiri@gmail.com</span>
</div>
<div class="form-floating mb-4">
<input type="email" class="form-control" id="floatingEmail" placeholder="name@example.com">
<label for="floatingInput"><i class="bi bi-patch-check"></i> Enter 6 Digit Code</label>
</div>
<button class="btn btn-primary w-100 py-2" type="submit"><i class="bi bi-envelope-check-fill"></i>
Verify Email
</button>
<div class="d-flex justify-content-between my-3">
<a href="" class="text-decoration-none">Register</a>
<a href="" class="text-decoration-none">Login</a>
</div>
</form>
</main>
</div>
</body>
</html>