I have successfully created a sign-in modal, but now I'm looking to include buttons at the top. One button should redirect users to register/sign up, and the other button should lead them back to the sign-in modal, as shown in the image I've linked here: Picture of sign-in modal.
I searched through the official Bootstrap documentation, but couldn't find any information on how to add navigation buttons to my modal.
If anyone has any advice or code suggestions for me to try out, please share it with me. Thank you in advance! (I have provided the HTML and CSS code below.)
<!-- Sign Up Modal -->
<div class="modal fade signup-modal" id="signupModal" tabindex="-1" aria-labelledby="Sign Up" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content rounded-4 signup-modal-background">
// Modal content goes here
</div>
</div>
</div>
<!-- End of sign up modal -->
/* Styling for sign up modal background */
.signup-modal-background {
background-color: #222022;
}