Skip to content

Add two-factor authentication to your website (uses MyDigipass.com)

License

Notifications You must be signed in to change notification settings

Mopster/KadekeDigipassBundle

Repository files navigation

KadekeDigipassBundle

Adds two-factor authentication to your application with MyDigipass.com

Installation

User

Have your user class implement the DigipassUser interface with the following methods:

    /**
     * @ORM\Column(type="string", nullable=true)
     */
    protected $digipass_uuid;

    /**
     * @param string $digipass_uuid
     */
    public function setDigipassUuid($digipass_uuid)
    {
        $this->digipass_uuid = $digipass_uuid;
    }

    /**
     * @return string
     */
    public function getDigipassUuid()
    {
        return $this->digipass_uuid;
    }

Templates

Script

Add the following line of code to the bottom of your page

{{ render_digipass_script() }}

Login

Add the following line of code to your login screen :

{{ render_digipass_login() }}

connect

Add the following code to the edit screen of the user

{{ render_digipass_connect(user) }}

TODO

Remove Kunstmaan Bundles dependency

About

Add two-factor authentication to your website (uses MyDigipass.com)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published