Guest User

Untitled

a guest
Jul 21st, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. conn.request({
  2. url: 'login.php',
  3. method: 'POST',
  4. scope: this,
  5. timeout: 60000,
  6. params: { 'email': Ext.get('email').getValue(), 'password': Ext.get('password').getValue() },
  7. callback: function(options, success, response) {
  8. if(success){
  9. Ext.MessageBox.alert('DEBUG', '"' + response.responseText + '"');
  10. }
  11. }
  12. });
Add Comment
Please, Sign In to add comment