#7973 closed defect (bug) (fixed)
Nouveau: Faulty HTML after submitting registration form
| Reported by: | suvikki | Owned by: | r-a-y |
|---|---|---|---|
| Priority: | normal | Milestone: | 3.3.0 |
| Component: | Templates | Version: | 3.0.0 |
| Severity: | normal | Keywords: | commit |
| Cc: |
Description
After I submit the registration form, BuddyPress creates invalid HTML code that breaks the layout of the site. Here's the code:
<form action="" name="signup_form" id="signup-form" class="standard-form signup-form clearfix" method="post" enctype="multipart/form-data"> <div class="layout-wrap"> </form>
This is what the html validator at W3 says:
End tag form seen, but there were open elements.
and also:
Unclosed element div.
Attachments (3)
Change History (12)
#1
@
8 years ago
- Component Core → Templates
- Keywords reporter-feedback added
- Summary Faulty HTML after submitting registration form → Nouveau: Faulty HTML after submitting registration form
- Version → 3.0.0
#7
@
8 years ago
- Keywords reporter-feedback removed
After 02.patch was applied, this had the effect of adding a custom step on the same row as the "Account Details" and "Profile Details" sections.
Looks like the bp_nouveau_signup_hook( 'custom', 'steps' ) call has to go after the .layout-wrap container.
Will commit this now.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
@suvikki - Thanks for the report.
Can you try01.patchand see if that fixes the problem?02.patchadheres to plugins that might be adding custom steps. The register button appears to be needed after the.layout-wrapcontainer... so that's what I'm doing in the second patch.