blob: 1c00663f4ce48b0e6b17ca81331d9084e783079f (
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
40
41
42
43
44
|
# Place all the behaviors and hooks related to the matching controller here.
# All this logic will automatically be available in application.js.
# You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/
#
validate_password = (event) ->
password = $('#srp_password').val()
confirmation = $('#srp_password_confirmation').val()
login = $('#srp_username').val()
if password != confirmation
alert "Password and Confirmation do not match!"
$('#srp_password').focus()
return false
if password == login
alert "Password and Login may not match!"
$('#srp_password').focus()
return false
if password.length < 8
alert "Password needs to be at least 8 characters long!"
$('#srp_password').focus()
return false
return true
signup = (event) ->
srp = new SRP(jqueryRest())
srp.register()
false
login = (event) ->
srp = new SRP(jqueryRest())
srp.identify ->
window.location = '/'
false
$(document).ready ->
$('#new_user').submit validate_password
$('#new_user').submit signup
$('#new_session').submit login
|