So how do I make it so before my user enters anything into the text box it has a preview saying "Type your name" or something along those lines? e.g.
userName = Entry(text="Username", font = ('Arial', 15), bg = 'white').place(relx = 0.55, rely = 0.35)
#userName.insert(0, "User name")
password = Entry(text="Password", font = ('Arial', 15), bg = 'white',show = '•').place(relx = 0.55, rely = 0.43)
#password.insert(0, "Password")