Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ehhh #2335

Open
HarbertSammyG opened this issue Aug 27, 2024 · 1 comment
Open

ehhh #2335

HarbertSammyG opened this issue Aug 27, 2024 · 1 comment

Comments

@HarbertSammyG
Copy link

<title>Simple PHP App</title> <style> body { font-family: Arial, sans-serif; background-color: #f4f4f4; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .container { background-color: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); text-align: center; } input[type="text"] { padding: 10px; width: 80%; margin: 10px 0; border-radius: 5px; border: 1px solid #ccc; } input[type="submit"] { padding: 10px 20px; background-color: #5cb85c; border: none; color: white; border-radius: 5px; cursor: pointer; } input[type="submit"]:hover { background-color: #4cae4c; } .greeting { margin-top: 20px; font-size: 1.2em; color: #333; } </style>

Greet Me!

">
    <div class="greeting">
        <?php
        if (!empty($name)) {
            echo "<p>Hello, $name!</p>";
        }
        ?>
    </div>
</div>

<script>
    // Simple JavaScript to focus on the input field when the page loads
    document.querySelector('input[name="name"]').focus();
</script>
Copy link

Thanks for reporting this! To set expectations:

  • Issues are reviewed in batches, so it can take some time to get a response.
  • Ask questions in a community forum. You will get an answer quicker that way!
  • If you experience something similar, open a new issue. We like duplicates.

Finally, please be patient with the core team. They are trying their best with limited resources.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants
@HarbertSammyG and others