Alright Before Getting Started Here is the idea . i'm making a reminder app it's just a simple app . i'm getting the value from the input field and making a checkbox with the input value next to it . now i'm using appendTo method but it's not printing the value . if you guys can help it would be awesome thanks!

MY HTML
<form id="form">
<input class="form-control topSpaceFromRoof" type="text"id="getReminder"/>
<p class="text-center">
<input type="submit" value="submit" class="btn btn-default">
</p>
</form>
<!-- here is the div in which i want to append check boxes -->
<div class="checkbox">
</div>
MY JAVASCRIPT
(function(){
var input = $('#getReminder');
$this = $(this);
$( "form" ).submit(function() {
if(input.val() == ""){
input.addClass('warning').attr('placeholder','Please set the reminder').addClass('warning-red');
return false;
}
else
{
input.removeClass('warning');
$('<label>
<input type="checkbox" id="checkboxSuccess" value="option1">
'+ input.val() +'
</label>').appendTo('.checkbox');
return true;
}
});
})();