#7973 closed defect (bug) (fixed)
Nouveau: Faulty HTML after submitting registration form
Reported by: | suvikki | Owned by: | r-a-y |
---|---|---|---|
Milestone: | 3.3.0 | Priority: | normal |
Severity: | normal | Version: | 3.0.0 |
Component: | Templates | 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
@
6 years ago
- Component changed from Core to Templates
- Keywords reporter-feedback added
- Summary changed from Faulty HTML after submitting registration form to Nouveau: Faulty HTML after submitting registration form
- Version set to 3.0.0
#5
@
6 years ago
- Owner set to r-a-y
- Resolution set to fixed
- Status changed from new to closed
In 12251:
#7
@
6 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.
Note: See
TracTickets for help on using
tickets.
@suvikki - Thanks for the report.
Can you try01.patch
and see if that fixes the problem?02.patch
adheres to plugins that might be adding custom steps. The register button appears to be needed after the.layout-wrap
container... so that's what I'm doing in the second patch.