Missing Method in CustomersController

You are seeing this error because the action forgot_password is not defined in controller CustomersController

If you want to customize this error message, create app/views/errors/missing_action.thtml.

Fatal: Confirm you have created the CustomersController::forgot_password() in file : app/controllers/customers_controller.php

<?php
class CustomersController extends AppController {
   function forgot_password() {
   }

}
?>