stages/*: minor string updates
This commit is contained in:
parent
37fe637422
commit
729910c383
|
@ -27,7 +27,7 @@ class SetupForm(forms.Form):
|
|||
label=_("Scan this Code with your OTP App."),
|
||||
)
|
||||
code = forms.CharField(
|
||||
label=_("Code"),
|
||||
label=_("Please enter the Token on your device."),
|
||||
validators=[OTP_CODE_VALIDATOR],
|
||||
widget=forms.TextInput(
|
||||
attrs={
|
||||
|
|
|
@ -18,7 +18,7 @@ class ValidationForm(forms.Form):
|
|||
user: User
|
||||
|
||||
code = forms.CharField(
|
||||
label=_("Code"),
|
||||
label=_("Please enter the token from your device."),
|
||||
validators=[OTP_CODE_VALIDATOR],
|
||||
widget=forms.TextInput(
|
||||
attrs={
|
||||
|
|
|
@ -28,6 +28,7 @@ class PasswordForm(forms.Form):
|
|||
widget=forms.HiddenInput(attrs={"autocomplete": "username"}), required=False
|
||||
)
|
||||
password = forms.CharField(
|
||||
label=_("Please enter your password."),
|
||||
widget=forms.PasswordInput(
|
||||
attrs={
|
||||
"placeholder": _("Password"),
|
||||
|
|
Reference in New Issue