Good afternoon,
I would like to know how I can edit the style of my form, I do not want it to appear all at once, I use 'form | crispy' to call the form.
I am also using 'django registration redux'.
How can I do so that for example in the "input" put a "placeholder"? I also want to remove the 'label' from the form.
This is my "login.html":
{% extends "index.html" %}
{% load crispy_forms_tags %}
{% load i18n %}
{% block content %}
<form method="post" action=".">
{% csrf_token %}
{{ form|crispy }}
<input type="submit" value="{% trans 'Iniciar sesion' %}" class="btn btn-primary"/>
<input type="hidden" name="next" value="{{ next }}" />
</form>
<p>{% trans "Has olvidado tu contrasena" %}? <a href="{% url 'auth_password_reset' %}">{% trans "Restablecer" %}</a>!</p>
<p>{% trans "No tienes cuenta" %}? <a href="{% url 'registration_register' %}">{% trans "Registrarte" %}</a>!</p>
{% endblock %}
Thanks in advance and best regards!