-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemail_preview.html
More file actions
97 lines (88 loc) · 2.86 KB
/
Copy pathemail_preview.html
File metadata and controls
97 lines (88 loc) · 2.86 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
96
97
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: 'Segoe UI', Arial, sans-serif;
color: #333;
line-height: 1.6;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 0 auto;
}
.header {
background-color: #0067b8;
color: white;
padding: 20px;
text-align: center;
}
.content {
background-color: #f9f9f9;
padding: 30px;
}
.alert {
background-color: #fff3cd;
border-left: 4px solid #f0ad4e;
padding: 15px;
margin: 20px 0;
}
.info-box {
background-color: white;
padding: 15px;
margin: 20px 0;
border: 1px solid #ddd;
}
.button {
display: inline-block;
padding: 12px 30px;
background-color: #0067b8;
color: white;
text-decoration: none;
border-radius: 2px;
margin: 20px 0;
}
.footer {
color: #666;
font-size: 12px;
text-align: center;
padding: 20px;
}
.footer a {
color: #0067b8;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h2>Microsoft Account Security</h2>
</div>
<div class="content">
<div class="alert">
<strong>⚠ Unusual sign-in activity detected</strong>
</div>
<p>We detected an unusual sign-in to your Microsoft account from a new device or location.</p>
<div class="info-box">
<strong>Sign-in details:</strong><br><br>
<strong>When:</strong> November 18, 2025 at 04:53 AM<br>
<strong>Device:</strong> Windows PC<br>
<strong>Location:</strong> Lagos, NG
</div>
<p>If this was you, you can safely ignore this email.</p>
<p><strong>If this wasn't you,</strong> your account may be at risk. Please verify your identity immediately:</p>
<center>
<a href="http://192.168.100.10:8080" class="button">Verify Account Now</a>
</center>
<p style="font-size: 12px; color: #666; margin-top: 15px;">This link will expire in 24 hours for your security.</p>
</div>
<div class="footer">
<p>Microsoft respects your privacy. Review our <a href="#">privacy statement</a>.</p>
<p>Microsoft Corporation, One Microsoft Way, Redmond, WA 98052</p>
</div>
</div>
</body>
</html>