Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix invalid HTML
The form was incorrectly defined in the middle of the table. It is now
wrapping it.
  • Loading branch information
dregad committed Nov 21, 2020
1 parent f65b0ca commit d45f1dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manage_user_edit_page.php
Expand Up @@ -319,6 +319,7 @@
<div class="widget-body">
<div class="widget-main no-padding">
<div class="form-container">
<form id="manage-user-project-add-form" method="post" action="manage_user_proj_add.php">
<div class="table-responsive">
<table class="table table-bordered table-condensed table-striped">
<tr>
Expand All @@ -327,7 +328,6 @@
</td>
<td><?php print_project_user_list( $t_user['id'] ) ?></td>
</tr>
<form id="manage-user-project-add-form" method="post" action="manage_user_proj_add.php">
<fieldset>
<?php echo form_security_field( 'manage_user_proj_add' ) ?>
<input type="hidden" name="user_id" value="<?php echo $t_user['id'] ?>" />
Expand Down Expand Up @@ -357,9 +357,9 @@
</td>
</tr>
</fieldset>
</form>
</table>
</div>
</form>
</div>
</div>
</div>
Expand Down

0 comments on commit d45f1dc

Please sign in to comment.