// Validate the signup form when it's submitted.
$(document).ready(function(){
    $('#register_form').submit(function(){
        var emails_match = $('#id_email').val() === $('#id_email2').val();
        if($('#id_email2').length && !emails_match) {
            alert("The two email addresses you entered do not match.");
            return false;
        }
        if($('#accept_tos').length && !document.getElementById('accept_tos').checked) {
            alert("You must agree to the Mingleverse Terms of Service and be over 13 years of age to sign up.");
            return false;
        }
        return true;
    });
});
