-
Notifications
You must be signed in to change notification settings - Fork 0
/
Toggling Visibility.html
34 lines (30 loc) · 1.19 KB
/
Toggling Visibility.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./font-awesome-4.7.0/css/font-awesome.min.css ">
<!-- development version, includes helpful console warnings -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body class="container">
</body>
<div id="app" class="input-group mb-3">
<!-- check is the value of show password is equal to true -->
<!-- If the value is true then show the text else show the password ( i.e dots) -->
<input v-bind:type="[showPassword ? 'text':'password']" class="form-control" placeholder="Password">
<div class="input-group-append">
<!-- on clicking change the eye slash sign to non slash and viceversa -->
<span class="input-group-text" @click="showPassword=!showPassword">
<i class="fa" :class="[showPassword ? 'fa-eye': 'fa-eye-slash']" aria-hidden="true"></i></span>
</div>
</div>
<script>
var app = new Vue({
el:"#app",
data:{
showPassword:'',
},
})
</script>