Changeset 393
- Timestamp:
- 06/03/06 06:48:37 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
login_engine/branches/rb_1.0/CHANGELOG
r392 r393 4 4 # Removed documentation/rake tasks that refer the schema.rb (Ticket #155) 5 5 # Verified cannot be assigned via URL parameters. If more security is required, users should override the signup action itself (Ticket #169) 6 # Minor view/flash message cleanup 6 7 7 8 = v1.0.1 login_engine/branches/rb_1.0/app/controllers/user_controller.rb
r392 r393 46 46 key = @user.generate_security_token 47 47 url = url_for(:action => 'home', :user_id => @user.id, :key => key) 48 flash[:notice] = 'Signup successful! Please log in.'48 flash[:notice] = 'Signup successful!' 49 49 if LoginEngine.config(:use_email_notification) and LoginEngine.config(:confirm_account) 50 50 UserNotify.deliver_signup(@user, params[:user][:password], url) 51 51 flash[:notice] << ' Please check your registered email account to verify your account registration and continue with the login.' 52 else 53 flash[:notice] << ' Please log in.' 52 54 end 53 55 redirect_to :action => 'login' login_engine/branches/rb_1.0/app/views/user/forgot_password.rhtml
r353 r393 11 11 12 12 <div class="button-bar"> 13 <%= submit_tag ' Submit request' %>13 <%= submit_tag 'Reset Password' %> 14 14 <%= link_to 'Cancel', :action => 'login' %> 15 15 </div>
