diff options
Diffstat (limited to 'files/ru/web/html/element/input/password/index.html')
-rw-r--r-- | files/ru/web/html/element/input/password/index.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/files/ru/web/html/element/input/password/index.html b/files/ru/web/html/element/input/password/index.html index 8bfed00469..1845a12d53 100644 --- a/files/ru/web/html/element/input/password/index.html +++ b/files/ru/web/html/element/input/password/index.html @@ -71,7 +71,7 @@ translation_of: Web/HTML/Element/input/password <pre class="brush: html"><label for="userPassword">Пароль:</label> <input id="userPassword" type="password"></pre> -<p>{{EmbedLiveSample("A_simple_password_input", 600, 40)}}</p> +<p>{{EmbedLiveSample("Простое_поле_ввода_пароля", 600, 40)}}</p> <h3 id="Поддержка_автозаполнения">Поддержка автозаполнения</h3> @@ -102,7 +102,7 @@ translation_of: Web/HTML/Element/input/password <pre class="brush: html"><label for="userPassword">Пароль:</label> <input id="userPassword" type="password" required></pre> -<p>{{EmbedLiveSample("Making_the_password_mandatory", 600, 40)}}</p> +<p>{{EmbedLiveSample("Обязательное_заполнение_пароля", 600, 40)}}</p> <h3 id="Указание_режима_ввода">Указание режима ввода</h3> @@ -111,7 +111,7 @@ translation_of: Web/HTML/Element/input/password <pre class="brush: html"><label for="pin">ПИН:</label> <input id="pin" type="password" inputmode="numeric"></pre> -<p>{{EmbedLiveSample("Specifying_an_input_mode", 600, 40)}}</p> +<p>{{EmbedLiveSample("Указание_режима_ввода", 600, 40)}}</p> <h3 id="Настройка_длины_пароля">Настройка длины пароля</h3> @@ -121,7 +121,7 @@ translation_of: Web/HTML/Element/input/password <input id="pin" type="password" inputmode="numeric" minlength="4" maxlength="8" size="8"></pre> -<p>{{EmbedLiveSample("Setting_length_requirements", 600, 40)}}</p> +<p>{{EmbedLiveSample("Настройка_длины_пароля", 600, 40)}}</p> <h3 id="Выделение_текста">Выделение текста</h3> @@ -142,7 +142,7 @@ translation_of: Web/HTML/Element/input/password <h4 id="Результат">Результат</h4> -<p>{{EmbedLiveSample("Selecting_text", 600, 40)}}</p> +<p>{{EmbedLiveSample("Выделение_текста", 600, 40)}}</p> <p>Вы также можете использовать {{domxref("HTMLInputElement.selectionStart", "selectionStart")}} и {{domxref("HTMLInputElement.selectionEnd", "selectionEnd")}}, чтобы получить (или установить), какой диапазон символов в элементе управления, и {{domxref("HTMLInputElement.selectionDirection", "selectionDirection")}}, чтобы узнать, какой выбор направления произошёл (или будет расширен в зависимости от вашей платформы, см. его документацию для объяснения) , Однако, учитывая, что текст затенён, их полезность несколько ограничена.</p> @@ -158,7 +158,7 @@ translation_of: Web/HTML/Element/input/password title="Enter an ID consisting of 4-8 hexadecimal digits"></pre> </div> -<p>{{EmbedLiveSample("Validation_sample1", 600, 40)}}</p> +<p>{{EmbedLiveSample("Валидация", 600, 40)}}</p> <dl> <dt>{{htmlattrdef("disabled")}}</dt> @@ -198,7 +198,7 @@ ssn.oninput = function(event) { <h4 id="Результат_2">Результат</h4> -<p>{{EmbedLiveSample("Requesting_a_Social_Security_number", 600, 60)}}</p> +<p>{{EmbedLiveSample("Запрос_номера_социального_страхования", 600, 60)}}</p> <h2 id="Спецификация">Спецификация</h2> |