Есть такое окно модальное, при нажатии на кнопку отправить оно не закрывается как исправить?
<!-- Modal -->
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Заполните форму</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form action="send.php" method="post">
<div class="form-group">
<label for="exampleInputName">Имя</label>
<input type="text" name="name" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Введите имя">
</div>
<div class="form-group">
<label for="exampleInputNamber">Телефон</label>
<input type="text" name="namber" class="form-control" id="exampleInputPassword1" placeholder="Введите телефон">
</div>
</form>
</div>
<div class="modal-footer">
<button type="submit button" class="btn btn-primary">Отправить</button>
</div>
</div>
</div>
</div>