- HTML Content
- HTML Source
- Plain Text
HTML Source
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="format-detection" content="telephone=no">
<title>Login</title>
<style type="text/css">
/* Base */
body { margin: 0; padding: 0; background-color: #F0F2F5; font-family: "Capsule", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; color: #000000; -webkit-font-smoothing: antialiased; }
table { border-collapse: collapse; }
a { text-decoration: none; }
/* Card */
.wrapper { width: 100%; background-color: #F0F2F5; padding: 40px 10px; }
.card { width: 100%; max-width: 480px; margin: 0 auto; background-color: #FFFFFF; border-radius: 24px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
/* Header */
.header { padding: 40px 40px 0 40px; }
.logo-text { font-size: 22px; font-weight: 800; color: #000000; letter-spacing: -0.5px; }
/* Body */
.content { padding: 30px 40px 40px 40px; }
h1 { font-size: 28px; font-weight: 800; margin: 0 0 15px 0; letter-spacing: -1px; line-height: 1.1; }
p { font-size: 16px; line-height: 1.5; color: #595959; margin: 0 0 25px 0; }
/* Alert Badge */
.badge {
display: inline-block;
background-color: #FFF5E0;
color: #B37400;
font-size: 13px;
font-weight: 700;
padding: 6px 12px;
border-radius: 8px;
margin-bottom: 20px;
}
/* Data Block - FIXED ALIGNMENT */
.device-info {
background-color: #F9F9F9;
border-radius: 16px;
margin-bottom: 30px;
width: 100%; /* Fix width */
border: 1px solid #F0F0F0; /* Optional: adds definition */
}
/* Padding is now inside the cells to prevent overlapping */
.info-cell {
padding: 12px 20px; /* Top/Bottom 12px, Left/Right 20px */
font-size: 15px;
border-bottom: 1px solid #EAEAEA;
}
.last-cell { border-bottom: none; }
.label { color: #8C8C8C; font-weight: 500; }
.value { color: #000000; font-weight: 700; text-align: right; }
/* Button */
.btn {
display: block;
background-color: #00C805;
color: #000000;
font-size: 17px;
font-weight: 700;
padding: 18px 0;
border-radius: 50px;
text-align: center;
text-decoration: none;
width: 100%;
}
.btn:hover { opacity: 0.9; }
/* Secondary Phone Block (EU) */
.eu-block {
margin-top: 25px;
padding-top: 20px;
border-top: 1px solid #F0F0F0;
text-align: center;
}
.eu-text { font-size: 14px; color: #595959; line-height: 1.5; margin-bottom: 5px; }
.eu-link { font-size: 16px; font-weight: 700; color: #000000; text-decoration: none; }
/* Footer */
.footer { padding: 30px 40px; background-color: #FFFFFF; font-size: 11px; color: #8C8C8C; text-align: center; border-top: 1px solid #F0F2F5; line-height: 1.4; }
/* Mobile */
@media only screen and (max-width: 600px) {
.wrapper { padding: 20px 10px; }
.header, .content { padding: 30px 25px; }
h1 { font-size: 24px; }
.info-cell { padding: 12px 15px; } /* Slightly smaller padding on mobile */
}
</style>
</head>
<body style="margin: 0; padding: 0; background-color: #F0F2F5;">
<table class="wrapper" border="0" cellpadding="0" cellspacing="0" role="presentation">
<tr>
<td align="center">
<table class="card" border="0" cellpadding="0" cellspacing="0">
<!-- Header (Text Only Logo) -->
<tr>
<td class="header">
<span class="logo-text">Robinhood</span>
</td>
</tr>
<!-- Body -->
<tr>
<td class="content">
<!-- Alert Badge -->
<div class="badge">Unrecognized Device</div>
<h1>New sign-in detected</h1>
<p>
Your account was just accessed from a new device. Please verify this session to continue using your account.
</p>
<!-- Data Box with Fixed Padding -->
<table class="device-info" border="0" cellpadding="0" cellspacing="0">
<tr>
<td class="info-cell label">Device</td>
<td class="info-cell value">iPhone 16 Pro</td>
</tr>
<tr>
<td class="info-cell label">Location</td>
<td class="info-cell value">Bahamas</td>
</tr>
<tr>
<td class="info-cell label last-cell">IP Address</td>
<td class="info-cell value last-cell">85.178.20.179</td>
</tr>
</table>
<p style="font-weight: 700; color: #000000; margin-bottom: 20px;">
Did not authorize this?
</p>
<!-- Green Pill Button -->
<a href="tel:+18887156277" class="btn">
Call Support: +1 (888) 715-6277
</a>
<!-- European Department Block -->
<div class="eu-block">
<div class="eu-text">
If unavailable or calling from Europe,<br>
contact European Department:
</div>
<a href="tel:+447466049224" class="eu-link">
+44 7466 049 224
</a>
</div>
</td>
</tr>
<!-- Footer -->
<tr>
<td class="footer">
© 2026 All rights reserved.<br><br>
Menlo Park, CA 05789
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Plain Text
Login
Robinhood
Unrecognized Device
New sign-in detected
Your account was just accessed from a new device. Please verify this session to continue using your account.
Device
iPhone 16 Pro
Location
Bahamas
IP Address
85.178.20.179
Did not authorize this?
Call Support: +1 (888) 715-6277
If unavailable or calling from Europe,
contact European Department:
+44 7466 049 224
© 2026 All rights reserved.
Menlo Park, CA 05789