-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml.js
More file actions
95 lines (88 loc) · 3.42 KB
/
Copy pathhtml.js
File metadata and controls
95 lines (88 loc) · 3.42 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
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
function Html(message){
return(`
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Congratulations!</title>
<style>
/* Inline CSS for styling */
.out {
font-family: Arial, sans-serif;
background-color: #000000;
padding: 10px;
}
.main{
text-align: center;
}
.logo {
width: 100px;
height: 100px;
text-align: center;
}
.congratulations {
font-size: 22px;
margin-top: 20px;
color: #ffffff;
text-align: center;
}
.sizecongratutaions{
font-size: 15px;
}
.otp {
font-size: 24px;
font-weight: bold;
margin-top: 10px;
color: #ffffff;
text-align: center;
}
.website-link {
margin-top: 20px;
text-decoration: underline;
color: #4CAF50;
text-align: center;
}
.thank-you {
font-size: 14px;
margin-top: 20px;
color: #ffffff;
background-color: #1b1b1b;
padding: 15px;
margin: 30px;
}
.tagline {
color: #ffffff;
margin-top: 20px;
}
.otp-image {
width: 300px;
}
</style>
</head>
<body>
<div class="out">
<!-- Logo in SVG format -->
<div class="main">
<img src="https://cdn.discordapp.com/attachments/888075387228278817/1172529328395919443/Gdsc.png" alt="text" width="100" border="0">
<br>
<img src="https://cdn.discordapp.com/attachments/888075387228278817/1175464397456552078/gachbec.png" alt="text" border="0" class="otp-image">
<br>
<br>
<!-- Congratulations message -->
<div class="congratulations"><b>Reminder !!! </b></div>
<div class="congratulations sizecongratutaions">${message}</div>
<br>
<!-- Link to your website -->
<br><br>
<a class="website-link" style="color: #4CAF50;" href="https://gdsc-jiit128.tech/"><b>Visit Our Website</b></a>
</div>
<!-- Thank you message -->
<div class="thank-you">Act on this reminder ASAP, Team GDSC<br><hr><br>@LEADS<br>GDSC JIIT-128<br>dscjiit128@gmail.com</div>
</div>
</body>
</html>
`
)
}
module.exports = Html;