You are here

FancyLoginLoginForm.php in Fancy Login 8.2

Same filename and directory in other branches
  1. 3.0.x src/Form/FancyLoginLoginForm.php

File

src/Form/FancyLoginLoginForm.php
View source
<?php

namespace Drupal\fancy_login\Form;

use Drupal\user\Form\UserLoginForm;

/**
 * Override of the Login Form, used by this module.
 */
class FancyLoginLoginForm extends UserLoginForm {

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'fancy_login_user_login_form';
  }

}

Classes

Namesort descending Description
FancyLoginLoginForm Override of the Login Form, used by this module.