Added Boostrap Password Reveal Library and clipboardJS library added copy to clipboard to client logins

This commit is contained in:
johnnyq
2021-08-08 15:04:39 -04:00
parent c5c2aabfd2
commit f1828a11a9
13 changed files with 867 additions and 13 deletions
@@ -0,0 +1,19 @@
# bootstrap-show-password
Bootstrap 4 show input password when click on icon
include plugin file
```bash
<script src="bootstrap-show-password.js"></script>
```
Example
```bash
<div class="input-group">
<input type="password" name="user_password" id="user_password" class="form-control" data-toggle="password">
<div class="input-group-append">
<span class="input-group-text"><i class="fa fa-eye"></i></span>
</div>
</div>
```