wishthis/src/assets/js/profile.js

24 lines
592 B
JavaScript
Raw Normal View History

2022-03-15 09:43:53 +00:00
$(function() {
$('.ui.calendar').calendar({
type : 'date',
firstDayOfWeek: 1,
startMode : 'year'
});
$('.ui.form').form({
fields: {
'user-email': 'email',
match: {
2022-03-15 12:07:05 +00:00
identifier : 'user-password-repeat',
depends : 'user-password',
rules : [
2022-03-15 09:43:53 +00:00
{
type : 'match[user-password]',
2022-03-22 15:15:56 +00:00
prompt : text.form_profile_password
2022-03-15 09:43:53 +00:00
}
]
},
}
});
});