How do I show a button only on my custom template page?

It’s as simple as doing a conditional and check if you are on home.

What you are looking for is is_page_template( );. Wrap your button inside it as follows:

<?php if( is_page_template( 'your-template-slug.php' ) ){ ?>
    <button name="button" style=" ... " value="OK" type="button">HAVE A QUESTIONS</button>
<?php } ?>