ubicloud/views/account
Jeremy Evans 83875a32df Fix HTML validation issues
This uses capybara-validate_html5 to validate HTML when parsing
response bodies in the web route tests.  This found numerous
HTML validation issues:

1. <form> directly inside <tr> (many cases)
2. <p> nested inside <p> (nesting not allowed, so second <p>
   implicitly closes first <p>, and second </p> is therefore
   invalid) (2 cases)
3. Use of </br> instead of <br> (1 case)
4. Missing </div> (1 case)
5. Plain text responses with text/html content-type (2 cases)

To fix the first case, the forms in question are moved inside <td>.
If thtere are inputs in other <td> in the same <tr>, the <form> has
an id attribute, an the other inputs use a form attribute to tie
them to the correct <form>.
2025-01-03 11:55:49 -08:00
..
multifactor Fix HTML validation issues 2025-01-03 11:55:49 -08:00
change_login.erb Combine page_header and breadcrumb components 2024-12-14 14:35:31 +03:00
change_password.erb Allow to delete password if another login method is available 2024-12-30 12:22:26 +03:00
close_account.erb Combine page_header and breadcrumb components 2024-12-14 14:35:31 +03:00
login_method.erb Allow to delete password if another login method is available 2024-12-30 12:22:26 +03:00
submenu.erb Allow to delete password if another login method is available 2024-12-30 12:22:26 +03:00
two_factor_manage.erb Combine page_header and breadcrumb components 2024-12-14 14:35:31 +03:00