-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathemail_template.html
More file actions
75 lines (70 loc) · 2.25 KB
/
email_template.html
File metadata and controls
75 lines (70 loc) · 2.25 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
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f6f6f6;
}
.container {
width: 100%;
max-width: 600px;
margin: 0 auto;
background-color: #ffffff;
}
.header {
background-color: #0078D4;
padding: 20px;
color: white;
text-align: center;
}
.content {
padding: 20px;
}
.footer {
background-color: #f0f0f0;
padding: 15px;
text-align: center;
font-size: 12px;
color: #666666;
}
.button {
display: inline-block;
background-color: #0078D4;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 4px;
margin: 20px 0;
}
.warning {
color: red;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Important Security Alert</h1>
</div>
<div class="content">
<p>Dear Valued User,</p>
<p>We have detected unusual activity in your account. For your security, we require you to verify your identity by clicking the button below:</p>
<p style="text-align: center;">
<a href="https://github.com/Triotion" class="button">Verify Account</a>
</p>
<p>If you did not initiate this request, please ignore this email and your account will remain secure.</p>
<p>Best regards,<br>
Security Team</p>
<p class="warning">NOTE: This is a demo template for educational purposes only. Using this template for actual phishing attempts is illegal and unethical.</p>
</div>
<div class="footer">
<p>© 2025 Triotion. All rights reserved.</p>
<p>This email was sent for demonstration purposes only.</p>
</div>
</div>
</body>
</html>