Code Monkey home page Code Monkey logo

yii2-password-input's Introduction

Yii2 Password Input

Installation

composer require eluhr/yii2-password-input

Example usage

Example Password Input Loop

<?php
use eluhr\passwordInput\widgets\PasswordInput;
use yii\helpers\Html;
use yii\widgets\ActiveForm;

$form = ActiveForm::begin();
echo $form->field($model, 'password')->widget(PasswordInput::class, [
    'buttonLabelShow' => \Yii::t('password-input', 'Show'),
    'buttonLabelHide' => \Yii::t('password-input', 'Hide'),
    'layout' => "{input}\n{bars}\n{summary}",
    'loadRulesFromModel' => false,
    'rules' => [
        [
            'text' => 'Must be at least 8 characters long',
            'pattern' => '/[0-9a-zA-Z]{8,}/'
        ],
        [
            'text' => 'Must include at least one number',
            'pattern' => '/\d+/'
        ],
        [
            'text' => 'Must contain the letter "a"',
            'pattern' => '/a/',
            'showAsBar' => false
        ],
        [
            'text' => 'Must not be empty',
            'pattern' => '/.+/',
            'showInSummary' => false
        ]
    ],
    'showPasswordByDefault' => false,
    'showShowPasswordButton' => true
]);
echo Html::submitButton();
ActiveForm::end();
?>

Configuration

For configuration options please refer to the Wiki

yii2-password-input's People

Contributors

eluhr avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

yii2-password-input's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.