blob: e0967944dd77aeb9a48d06f37ef6a4f1891c61ec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
$('form.form-register').submit(function(){
Botleagues.request({
endpoint: 'user',
method: 'POST',
data: {
email: $(this).find('input[name="email"]').val(),
password: $(this).find('input[name="password"]').val()
}
}, BotleaguesCallback.register);
event.preventDefault();
});
$('.btn-botleagues-login').focus(function(){
$('#login-block').slideDown();
$('#login-email').focus();
});
|