My starting point is to write the registration page itself.
Next I went to the author sign with auth component.
This is the problem.
In the registration page. Password box. Whenever I press the button to submit. Whether in the field is populated or not. A password appears.
I recognize the problem because I am before I could use auth component not problem
Thank for suggest beginner
This is most likely your browser autofilling the field.
You can set to autocomplete=”off” on the form and the password box. This has limited browser support and validates only as HTML5 (I think). More details on this thread : How do you disable browser Autocomplete on web form field / input tag?
However, if this happens after you submit an empty form and the page reloads showing the validations, then it’s due to the Auth component hashing an empty value. This can be solved by explicitly setting an empty value on the password box on page load