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]',
|
|
|
|
prompt : 'Password must match.'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|