Skip to content

Instantly share code, notes, and snippets.

View alexandermoura's full-sized avatar

Alexander Moura alexandermoura

View GitHub Profile
@imadphp
imadphp / PasswordField.vue
Last active January 31, 2024 17:51
Show/Hide password in VueJS (Bootstrap, FontAwesome)
<template>
<div class="form-inline">
<div v-if="!passwordHidden">
<label>
<span class="strong-label">{{ fieldLabel }}</span>
<input type="text" class="password-field form-control d-inline" v-model="passwordText" />
<span class="display-eye fa fa-eye-slash" @click="hidePassword"></span>
</label>
</div>
<div v-if="passwordHidden">