#64768 closed defect (bug) (invalid)
“Log In” link on WordPress installation success screen is not styled as a button
| Reported by: | maulikmakwana2008 | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Upgrade/Install | Version: | 6.3 |
| Severity: | normal | Keywords: | has-patch |
| Cc: | Focuses: | ui, accessibility, css, administration |
Description
On the WordPress installation success screen (wp-admin/install.php?step=2), the “Log In” action is rendered as a simple text link instead of a primary button.
This is inconsistent with other admin screens where primary actions are displayed using button styling. From a UX perspective, this makes the primary next step less visible and less accessible, especially for new users.
Attachments (2)
Change History (7)
This ticket was mentioned in PR #11101 on WordPress/wordpress-develop by @maulikmakwana2008.
5 months ago
#2
#3
@
5 months ago
- Keywords reporter-feedback added; needs-testing removed
Hi @maulikmakwana2008,
I've gone through your patch and noticed that it's changing files unrealted to the login link on the installation success screen.
For example patch changes class-wp-site-health.php as well as class-wp-rest-posts-controller.php
#4
@
5 months ago
- Component Administration → Upgrade/Install
- Focuses accessibility added
- Keywords reporter-feedback removed
- Milestone Awaiting Review
- Resolution → invalid
- Status new → closed
- Version 6.9.1 → 6.3
#40470 changed the styling so the Log In link is not confused with a button, which can be activated with the spacebar. The element is a link, and now it is displayed as a link.
@SergeyBiryukov commented on PR #11101:
4 months ago
#5
Thanks for the PR! Closing for now, as the associated Trac ticket has been closed.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
I was able to reproduce this issue on a fresh WordPress installation.
On the installation success screen (wp-admin/install.php?step=2), the “Log In” action is rendered as a plain text link instead of using standard WordPress button styling. This makes the primary next step less visible and inconsistent with other admin UI patterns.
I’ve prepared a patch that updates the markup to use the existing admin button classes (button button-primary) for the “Log In” link. This improves visual consistency and usability without changing any functionality.
Expected behavior:
The “Log In” action should be styled as a primary button, similar to other key actions in wp-admin.
Actual behavior:
The link appears as unstyled text.
Patch attached. Please let me know if any changes or additional tests are required.