summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/account/LoginView.js
blob: 334c58b25354ceff5fe106240bf90623e55cbe93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
var LoginView = SerializableView.extend({
  
  el: "#login",
  
  events: {
    "click .newuser": "newuser",
    "submit form": "save",
  },
  
  initialize: function(){
    this.$form = this.$("form")
    this.$msg = this.$(".msg")
  },
  
  show: function(){
    app.footer.show("SUBMIT", "CANCEL")
    this.$form.get(0).reset()
    this.$msg.html("* Your personal and payment information will always remain private")
    document.body.className = "login"
  },

  newuser: function(){
    app.router.go("account/signup")
  },

  save: function(e){
    e && e.preventDefault()
    
    var data = this.serialize()
    
    sdk.account.login({ data: data }).done(function(data){
      console.log("LOGIN SUCCESS", data)
    }).fail(function(data){
      console.log("LOGIN FAIL", data)
    })

  },
  
})