I have webpage which uses flask/python framework, and also a bootstrap button is present in webpage. Now I want to pass some values or parameters when a button/link is clicked, how can it be done?
In the below code Generatebill
is the button that I need to pass some parameters when clicked.
<div class="card text-white bg-info mb-3" style="max-width: 18rem;">
<div class="card-body">
<h5 class="card-title">Washinton laundries</h5>
<H5><p class="card-text">5 Kg </p></H5>
<H5><p class="card-text">Rate : 200 Rs</p></H5>
<a href="generatebill" class="btn btn-primary">Generatebill</a>
</div>
</div>