Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. App.RegisterUser = {};
  2.  
  3. App.RegisterUser._createTable = function(){
  4.  
  5. App.Database.insert('account', {
  6. username: 'darel',
  7. password: 'p@ssw0rd',
  8. acct_security_q: 'Whos yo momma?',
  9. acct_security_a: 'momma-d'
  10. });
  11. }
  12.  
  13. (function($){
  14.  
  15. $("#register-form").submit(App.RegisterUser._createTable);
  16.  
  17. })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement