I am facing a challenge with hiding a button inside a form.
<form method="get">
<input type="hidden" name="id" value="7245">
<input type="hidden" name="action" value="removesubmissionconfirm">
<button type="submit" class="btn btn-secondary" title="">Remove submission</button>
</form>
There are multiple forms in the same scenario as above, with differing "action" values. I want to hide the button based on that specific value using CSS if possible.
I have experimented with various methods but have not found a successful solution yet.
Thank you in advance for any help or advice provided.