forked from dinesh0085/Shemrush-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
email confirmation.html
191 lines (164 loc) · 5.04 KB
/
email confirmation.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!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">
<title>Confirm Email - Semrush</title>
<style>
body {
margin: 0px;
}
#main {
display: grid;
grid-template-columns: repeat(2, 1fr);
position: relative;
}
h2 {
color: black;
}
#gt {
color: #767676;
margin: auto;
width: 50%;
display: grid;
grid-template-rows: repeat(3);
gap: 10px;
margin-top: 60px;
padding-left: 60px;
}
h1 {
line-height: 0px;
margin: 20px;
}
.flex {
display: flex;
flex-direction: column;
}
label {
font-size: 16px;
line-height: 1.5;
}
input {
min-width: 0;
width: 100%;
height: 35px;
font-size: 20px;
padding: 0px;
border: 1px solid #767676;
border-radius: 5px;
background: transparent;
margin-bottom: 20px;
/* margin-bottom: 10px; */
}
#submit {
min-width: 0;
width: 100%;
height: 38px;
font-size: 20px;
padding: 0px;
border: 1px solid #ff642d;
border-radius: 5px;
background: transparent;
margin-top: 5px;
background-color: #ff642d;
cursor: pointer;
}
#firstp {
font-weight: bold;
}
p {
width: 90%;
font-size: 16px;
line-height: 1.42;
}
#loginabutton {
color: #ff642d;
text-decoration: none;
}
p>a {
color: #767676;
}
div {
display: block;
}
.rc-footer {
/* display: inline-block; */
position: fixed;
height: 74px;
vertical-align: top;
width: 74px;
margin-top: -15%;
font-size: 10px;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
padding: 5px;
}
.rc-l {
transition: all 0.3s ease;
background-size: 40px;
height: 50px;
width: 50px;
background: url(https://www.gstatic.com/recaptcha/api2/logo_48.png);
background-repeat: no-repeat;
}
.rc-anchor-pt a {
text-decoration: none;
color: #555;
}
</style>
</head>
<body>
<div id="main">
<div>
<h1><a href="home.html"><img src="https://i.ibb.co/XJ26L8z/logo-semrush.png" alt="logo-semrush"
border="0"></a></h1>
<div action="" id="gt">
<div>
<h2>Confirm your email</h1>
<p>Enter Your Email again for verification:</p>
</div>
<div class="flex">
<form action="">
<label for="email">Email</label>
<input type="email" id="email">
</form>
<button id="submit" onclick="Confirm()">Confirm Email</button>
</div>
<div>
<p id="firstp">Already have an account ? <a id="loginabutton" href="login.html">Log in</a></p>
<p>By creating your account, you agree to the <a
href="https://www.semrush.com/company/legal/terms-of-service/">Terms of Service</a> and <a
href="https://www.semrush.com/company/legal/privacy-policy/">Privacy
Policy</a> </p>
</div>
</div>
</div>
<div>
<img src="https://i.ibb.co/6WG1sST/emailconfirmation-side-div.png" alt="emailconfirmation-side-div" border="0">
</div>
</div>
<div class="rc-footer">
<a href="https://www.google.com/intl/en/policies/privacy/">
<div class="rc-l" role="presentation">
<div class="rc-anchor-logo-img rc-anchor-logo-img-large"></div>
</div>
<div class="rc-anchor-pt">
<a href="https://www.google.com/intl/en/policies/privacy/" target="_blank">Privacy</a><span aria-hidden="true" role="presentation"> - </span><a href="https://www.google.com/intl/en/policies/terms/" target="_blank">Terms</a>
</div>
</a>
</div>
</body>
</html>
<script>
function Confirm(){
let Email=localStorage.getItem("email");
let cemail=document.getElementById("email").value;
if(Email==cemail){
alert("Email Confirmation Succesfull");
window.location.href="plane.html";
}else{
alert("Enter the correct email");
window.location.reload();
}
}
</script>