Skip to content

Commit

Permalink
Fixed feedback form page accessibility issue
Browse files Browse the repository at this point in the history
- The form used a fieldset tag instead of a form tag
  • Loading branch information
alexandrevryghem committed Dec 20, 2023
1 parent ce66979 commit 846e341
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<form class="primary" [formGroup]="feedbackForm" (ngSubmit)="createFeedback()">
<h1>{{ 'info.feedback.head' | translate }}</h1>
<p>{{ 'info.feedback.info' | translate }}</p>
<fieldset class="col p-0">
<form class="col p-0">
<div class="row">
<div class="control-group col-sm-12">
<label class="control-label" for="email">{{ 'info.feedback.email-label' | translate }}&nbsp;</label>
Expand Down Expand Up @@ -39,7 +39,7 @@ <h1>{{ 'info.feedback.head' | translate }}</h1>
<button [disabled]="!feedbackForm.valid" class="btn btn-primary" name="submit" type="submit">{{ 'info.feedback.send' | translate }}</button>
</div>
</div>
</fieldset>
</form>
</form>
</div>
</div>

0 comments on commit 846e341

Please sign in to comment.