We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a6bd48 commit 9914cc1Copy full SHA for 9914cc1
task_manager/templates/register.html
@@ -1,16 +1,18 @@
1
<form method="post" novalidate autocomplete="off">
2
{% csrf_token %}
3
4
- <label class="form-label" for="id_first_name">Имя</label>
+ <label class="form-label" for="id_first_name">Имя</label>
5
{{ form.first_name.as_widget(attrs={
6
'id': 'id_first_name',
7
'name': 'first_name',
8
'maxlength': '150',
9
'class': 'form-control',
10
'placeholder': 'Имя',
11
- 'required': ''
+ 'required': '',
12
+ 'aria-label': 'Имя'
13
}) }}
14
15
+
16
<div>
17
<label for="{{ form.last_name.id_for_label }}">Фамилия</label>
18
{{ form.last_name.as_widget(attrs={
0 commit comments