$(document).ready(function () {
var $form = $('#form-id');
var $checkbox = $('#mycheckbox');
$form.on('submit', function(e) {
if(!$checkbox.is(':checked')) {
alert('Please confirm!');
e.preventDefault();
}
});
});