Skip to content

Commit

Permalink
별점 error 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
EunJiKim02 committed Dec 5, 2023
1 parent 4a9c938 commit 6cecfd1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Binary file modified __pycache__/config.cpython-38.pyc
Binary file not shown.
Binary file modified database/__pycache__/db.cpython-38.pyc
Binary file not shown.
Binary file modified routes/__pycache__/main_routes.cpython-38.pyc
Binary file not shown.
Binary file modified routes/__pycache__/order_routes.cpython-38.pyc
Binary file not shown.
10 changes: 5 additions & 5 deletions templates/star.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ <h2 class="text-2xl font-bold mb-4">Rate</h2>
<form action="{{url_for('main.star_process')}}">
<div class="star-rating mb-4">
<input type="hidden" name="alcoholid" value="{{data}}">
<input type="radio" id="star5" name="rating" name='star' value="5"><label for="star5" title="5 stars"></label>
<input type="radio" name='star' id="star4" name="rating" value="4"><label for="star4" title="4 stars"></label>
<input type="radio" name='star' id="star3" name="rating" value="3"><label for="star3" title="3 stars"></label>
<input type="radio" name='star' id="star2" name="rating" value="2"><label for="star2" title="2 stars"></label>
<input type="radio" name='star' id="star1" name="rating" value="1"><label for="star1" title="1 star"></label>
<input type="radio" id="star5" name="star" value="5"><label for="star5" title="5 stars"></label>
<input type="radio" id="star4" name="star" value="4"><label for="star4" title="4 stars"></label>
<input type="radio" id="star3" name="star" value="3"><label for="star3" title="3 stars"></label>
<input type="radio" id="star2" name="star" value="2"><label for="star2" title="2 stars"></label>
<input type="radio" id="star1" name="star" value="1"><label for="star1" title="1 star"></label>
</div>

<button onclick="window.location.href='nextpage.html'" class="mt-5 btn text-white font-bold py-2 px-4 rounded">
Expand Down

0 comments on commit 6cecfd1

Please sign in to comment.