$(function() {
$('#registration_form_1').parsley();
$('#timezone').val(Intl.DateTimeFormat().resolvedOptions().timeZone);
$("#datepicker").datepicker({
autoclose: true,
todayHighlight: true
}).datepicker('update', new Date());
$('input[type="text"], input[type="password"]').on('input', function() {
// Trim leading spaces from the input value
var trimmedValue = $(this).val().replace(/^\s+/g, '');
$(this).val(trimmedValue);
});
});