wishthis/src/assets/js/profile.js

24 lines
575 B
JavaScript
Raw Normal View History

2022-03-15 09:43:53 +00:00
$(function() {
$('.ui.calendar').calendar({
type : 'date',
firstDayOfWeek: 1,
initialDate : '01.01.1990',
startMode : 'year'
});
$('.ui.form').form({
fields: {
'user-email': 'email',
match: {
identifier : 'user-password-repeat',
rules: [
{
type : 'match[user-password]',
prompt : 'Password must match.'
}
]
},
}
});
});