As indicated in the title, the placeholder attribute in form widgets does not display correctly. This is random, sometimes it works fine, and sometimes I need to update my browser so that it displays. I need them, because I do not show field labels in the template. Anyway, here is the code:
#FORMS.PY class RegistrationForm(UserCreationForm): first_name = forms.CharField(label=_('First name'), max_length=30) last_name = forms.CharField(label=_('Last name'), max_length=30) email = forms.EmailField(label=_("Email"), required=True) class Meta: model = User fields = ('username', 'first_name', 'last_name', 'email', 'password1', 'password2') def __init__(self, *args, **kwargs): super(RegistrationForm, self).__init__(*args, **kwargs)
By the way, I am using the django development server, can there be a problem because the server is slow. Any help would be appreciated
Edit: Views.py and template on request
#views.py def register(request): if request.method == 'POST': form = RegistrationForm(request.POST) if form.is_valid(): form.save() if REGISTER_EMAIL_CONFIRMATION == True: # Add email confirmation username = form.cleaned_data['username'] email = form.cleaned_data['email'] salt = hashlib.sha1(str(random.random()).encode('utf-8')).hexdigest()[:5] activation_key = hashlib.sha1((salt+email).encode('utf-8')).hexdigest() key_expires = datetime.datetime.today() + datetime.timedelta(CONFIRMATION_KEY_EXPIRE_DAYS) # Create and save User Profile user=User.objects.get(username=username) new_profile = UserProfile(user=user, activation_key=activation_key, key_expires=key_expires) new_profile.save() # Send email with activation key subject_file = 'app_authentication/email_signup_confirm_subject.txt' body_file = 'app_authentication/email_signup_confirm_body.html' context = {'username':username, 'activation_key':activation_key} send_email_from_files([email], subject_file, body_file, context) return redirect('confirm_email_sent') else: return redirect('register_success') else: form = RegistrationForm() return render(request, 'registration/register.html', {'form': form, 'title': _('Register')}) #register.html {% block content2 %} <form id="register_form" autocomplete="off" method="post" action="{% url 'register' %}"> {% csrf_token %} <div class="clearfix"> {% for field in form %} <div class="form-group"> {{ field }} {% if form.errors %} {% for error in field.errors %} <div class="alert alert-error"> <strong>{{ error|escape }}</strong> </div> {% endfor %} {% endif %} </div> {% endfor %} {% if form.errors %} {% for error in form.non_field_errors %} <div class="alert alert-error"> <strong>{{ error|escape }}</strong> </div> {% endfor %} {% endif %} </div> <div class="pt-10"> <button class="submit_btn btn btn-mod btn-medium btn-round btn-full" id="reg-btn" name="submit">{{ title }}</button> </div> </form> {% endblock content2 %}
Screenshots:
when I started the development server and try to log in: 
The same login page after updating the browser: 
@akarilimano:
class LoginForm(AuthenticationForm):