24 lines
628 B
JavaScript
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
|
|
}
|
|
]
|
|
},
|
|
}
|
|
});
|
|
});
|