How To Reset Your Password

Radiant doesn't presently provide a way to do this through the UI, but you can reset your password using the console:

$ script/console production
Loading production environment.
>> user = User.find_by_login('admin')
=> ...
>> user.password = user.confirm_password = 'newpassword'
=> "newpassword"
>> user.save!
=> true
>> exit