diff --git a/static/css/styles.css b/static/css/styles.css index e5b7d71..74408ca 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -1000,6 +1000,16 @@ section.register>form { display: inline-block; width: 90%; } +.necessary_text { + color: rgba(39, 36, 36, 0.60); + /* Body text 3 */ + font-size: 14px; + font-style: normal; + font-weight: 400; + line-height: 20px; + display: inline-block; + width: 100%; +} .button_register>button { display: block; diff --git a/templates/forms/f_registration.html b/templates/forms/f_registration.html index ddc8474..86937f1 100644 --- a/templates/forms/f_registration.html +++ b/templates/forms/f_registration.html @@ -1,14 +1,15 @@ {% load i18n %} -{% trans "Имя" as p_name %} -{% trans "Фамилия" as p_lastname %} +{% trans "Имя *" as p_name %} +{% trans "Фамилия *" as p_lastname %} {% trans "Телефон" as p_tel %} -{% trans "Пароль" as p_password %} -{% trans "Подтвердить пароль" as p_con_password %} +{% trans "Пароль *" as p_password %} +{% trans "Подтвердить пароль *" as p_con_password %}

{% translate "Регистрация" %}

+
{% csrf_token %} - +
{% trans "Обязательные поля помечены значком *" %}
@@ -51,7 +52,7 @@ name="email" onkeydown = "hideErrors(this)" type="text" - placeholder="E-mail" + placeholder="E-mail *" id="registration_email_input" {% if form.data.email %} value="{{ form.data.email }}"{% endif %}> @@ -107,7 +108,7 @@
-
{% translate "Регистрируясь, я соглашаюсь с Лицензионным соглашениеми и Политикой конфиденциальности" %}
+
{% translate "Регистрируясь, я соглашаюсь с Лицензионным соглашениеми и Политикой конфиденциальности." %}
{% if form.errors and form.errors.agreement %} {{ form.errors.agreement }} {% endif %}