Всё что нужно — это просто создать две кнопки при нажатии на которые мы скроем нашу панель:
<div class = "panel>
<button onclick="hide" id="button">Отказаться</button>
<button onclick="hide" id="button">Согласиться</button>
<script>
function hide {
document.getElementById('but').style.display = 'none';
}
<script>
</div>