-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverificationMail.html
More file actions
45 lines (42 loc) · 1.07 KB
/
verificationMail.html
File metadata and controls
45 lines (42 loc) · 1.07 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
<head>
<meta charset="UTF-8">
<script>
function GetServerAdress() {
if (window.location.href.includes('localhost')) {
const uri = new URL(window.location.href);
uri.port = '6969';
return uri.origin;
} else {
return document.location.origin;
}
}
</script>
<style>
p{
background-color:antiquewhite;
border-radius: 20px;
}
button a{
background: rgb(99, 252, 99);
color:green;
}
button{
background: rgb(99, 252, 99);
}
</style>
</head>
<body style="direction: rtl; text-align: center; background: white;">
<div>
<h1>lienet אימות</h1>
<p style="background-color:whitesmoke;
border-radius: 20px;">
על מנת לאמת שזהו המייל שלך יש ללחוץ על הכפתור הירוק
<button style="background: rgb(99, 252, 99);
color:green;
padding: 10px;">
<a href="{origin}/verifyMail?verification_id={verification_id}&token={token}">
אמת!
</a></button>
</p>
</div>
</body>