I want to customize my password field in django admin panel to implement hide/unhide functionality.
#app/models.py
from django.db import models
class CustomInput(models.Model):
name = models.CharField(max_length=100)
password = models.CharField(max_length=128)
I want to add a "eye" sign in password field and implement hide/unhide functionality inside my admin panel.