How to add placeholder to forms of Django-Registration
问题 I am using django-registration for my project. in my registration_form.html file: {{form.username}} {{form.email}} //other fields And I want to set placeholders for each field. But this is a kind of built-in app. so I need to find the way for editing these fields from my main app. I don't want to change source of django-registration. 回答1: If you can override the built-in form, you can define the placeholder as follows: class RegistrationForm(forms.ModelForm): class Meta: model = YourModelName