summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/views/sessions/registration-form.js.coffee
blob: d2f865162011ca17af1cb4c1515eeb9dc8a273cd (plain)
1
2
3
4
5
6
7
8
9
10
11
#= require views/auto_view

class csx.Views.RegistrationForm extends csx.FormView
  @viewName 'registration-form'
  modelKey: "user"
  events:
    'input #user_name': 'onInput'
    'input #user_email': 'onInput'
    'input #user_password': 'onInput'
    'change #user_accepted': 'onInput'
    'submit form': 'onSubmit'