import $ from 'jquery';
import 'bootstrap/dist/js/bootstrap';

$(function () {
    const passwordField = $('#password');
    const showPw = $("#show-pw");
    const noShowPw = $("#no-show-pw");

    showPw.css('cursor', 'pointer')
    noShowPw.css('cursor', 'pointer')

    showPw.on('click', function () {
        passwordField.attr('type', 'text')
        showPw.hide()
        noShowPw.show()
    })

    noShowPw.on('click', function () {
        passwordField.attr('type', 'password')
        noShowPw.hide()
        showPw.show()
    })
})