Files
canine/app/javascript/controllers/toggle_password_controller.js
2024-10-04 11:35:26 -07:00

16 lines
425 B
JavaScript

import { Controller } from "@hotwired/stimulus"
export default class extends Controller {
static targets = ["input", "icon"]
toggle() {
if (this.inputTarget.type === "password") {
this.inputTarget.type = "text"
this.iconTarget.classList.replace("bi-eye", "bi-eye-slash")
} else {
this.inputTarget.type = "password"
this.iconTarget.classList.replace("bi-eye-slash", "bi-eye")
}
}
}