Skip to content

Commit

Permalink
Clean up the feedback form HTML attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
ndebuhr committed Sep 15, 2022
1 parent b2d986c commit d2096ee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions site/layouts/partials/feedback/form.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<form id="feedback-form" action="/v1/feedback/submit">
<form id="feedback-form" action="/v1/feedback">
<div class="form-block row">
<label for="job-type" class="col-md-4">Chatbot User Type</label><br>
<select name="job-type" id="job-type" class="col-md-6">
<label for="user-type" class="col-md-4">Chatbot User Type</label><br>
<select name="user-type" id="user-type" class="col-md-6">
<option disabled selected value></option>
<option value="user">User</option>
<option value="power-user">Power User</option>
Expand All @@ -24,8 +24,8 @@
</select>
</div>
<div class="form-block row">
<label for="job-type" class="col-md-4">Feedback</label><br>
<textarea name="feedback" class="col-md-6" required></textarea>
<label for="feedback" class="col-md-4">Feedback</label><br>
<textarea name="feedback" id="feedback" class="col-md-6" required></textarea>
</div>
<div class="form-block row">
<div class="col-md-3">
Expand Down

0 comments on commit d2096ee

Please sign in to comment.