recover-password.coffee 510 Bytes
###
  Controller: Recover Password
  Template: /client/views/public/recover-password.html
###

# Created
Template.recoverPassword.created = ->
  # Code to run when template is created goes here.

# Rendered
Template.recoverPassword.rendered = ->
  # Code to run when template is rendered goes here.

# Helpers
Template.recoverPassword.helpers(
  example: ->
    # Code to run for helper function.
)

# Events
Template.recoverPassword.events(
  'click .example': (e,t) ->
    # Code to run for example event.
)