blob: 9c69489e45d9cce099078affdb03295d57ab03c3 (
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
|
var LoginView = View.extend({
el: "#login",
events: {
"click .newuser": "newuser",
"submit form": "submit",
},
initialize: function(){
this.$form = this.$("form")
this.$msg = this.$(".msg")
},
show: function(){
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")
},
submit: function(e){
e.preventDefault()
},
success: function(){
// change login in ui to logout or whatever
},
})
|