run() public method

Run the controller and parse the password template
public run ( ) : Response
return Symfony\Component\HttpFoundation\Response
 /**
  * Renders the "set new password" form.
  *
  * @return Response
  *
  * @Route("/password", name="contao_backend_password")
  */
 public function passwordAction()
 {
     $this->container->get('contao.framework')->initialize();
     $controller = new BackendPassword();
     return $controller->run();
 }