reset-password.coffee
518 Bytes
###
Controller: Reset Password
Template: /client/views/public/reset-password.html
###
# Created
Template.resetPassword.created = ->
# Code to run when template is created goes here.
# Rendered
Template.resetPassword.rendered = ->
# Code to run when template is rendered goes here.
# Helpers
Template.resetPassword.helpers(
example: ->
# Code to run for helper function.
)
# Events
Template.resetPassword.events(
'click .example': (e,t) ->
# Code to run for example event.
)