mirror of
https://github.com/openvk/openvk
synced 2025-07-03 06:19:49 +03:00
chore(login): 2fa type number (#1322)
Что это дают? У поля ввода указано что там должны быть цифры (Полезно когда клавиатура виртуальная) Отключено автозаполнение
This commit is contained in:
parent
4413106689
commit
79e2446184
3 changed files with 4 additions and 4 deletions
|
@ -37,7 +37,7 @@
|
|||
<span class="nobold">{_"2fa_code_2"}: </span>
|
||||
</td>
|
||||
<td class="regform-right">
|
||||
<input id="password" type="password" name="password" required />
|
||||
<input id="password" type="number" autocomplete="off" name="password" required />
|
||||
</td>
|
||||
</tr>
|
||||
{/if}
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
<span class="nobold">{_code}: </span>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" name="code" autocomplete="off" required autofocus />
|
||||
<input type="number" name="code" autocomplete="off" required autofocus />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
|
@ -72,7 +72,7 @@
|
|||
<span class="nobold">{_"2fa_code"}</span>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" name="email_change_code" style="width: 100%;" />
|
||||
<input type="number" autocomplete="off" name="email_change_code" style="width: 100%;" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -161,7 +161,7 @@
|
|||
<span class="nobold">{_"2fa_code"}</span>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" name="password_change_code" style="width: 100%;" />
|
||||
<input type="number" autocomplete="off" name="password_change_code" style="width: 100%;" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
Loading…
Reference in a new issue