wishthis/src/assets/js/profile.js
2022-03-23 10:48:59 +01:00

24 lines
628 B
JavaScript

$(function() {
$('.ui.calendar').calendar({
type : 'date',
firstDayOfWeek : 1,
startMode : 'year'
});
$('.ui.form').form({
fields: {
'user-email' : 'email',
match : {
identifier : 'user-password-repeat',
depends : 'user-password',
rules : [
{
type : ['minLength[8]','match[user-password]'],
prompt : text.form_profile_password
}
]
},
}
});
});