本文整理汇总了Python中django.forms.widgets.PasswordInput方法的典型用法代码示例。如果您正苦于以下问题:Python widgets.PasswordInput方法的具体用法?Python widgets.PasswordInput怎么用?Python widgets.PasswordInput使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类django.forms.widgets
的用法示例。
在下文中一共展示了widgets.PasswordInput方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from django.forms import widgets [as 别名]
# 或者: from django.forms.widgets import PasswordInput [as 别名]
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
# 只修改widget
self.fields['username'].widget = widgets.TextInput(
attrs={
'placeholder': 'Username',
'class': 'form-control',
'style': 'margin-bottom: 10px'
})
self.fields['email'].widget = widgets.EmailInput(
attrs={
'placeholder': 'Email',
'class': 'form-control'
})
self.fields['password1'].widget = widgets.PasswordInput(
attrs={
'placeholder': 'New password',
'class': 'form-control'
})
self.fields['password2'].widget = widgets.PasswordInput(
attrs={
'placeholder': 'Repeat password',
'class': 'form-control'
})
示例2: __init__
# 需要导入模块: from django.forms import widgets [as 别名]
# 或者: from django.forms.widgets import PasswordInput [as 别名]
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.fields["new_password1"] = CharField(
min_length=settings.PASSWORD_MIN_LENGTH,
max_length=settings.PASSWORD_MAX_LENGTH,
label="Enter your new password",
widget=PasswordInput(attrs={"autocomplete": "off"}),
error_messages={"required": REQUIRED_ERROR.format("password")},
)
self.fields["new_password2"].label = "Confirm new password"
self.fields["new_password2"].widget.attrs["autocomplete"] = "off"
self.fields["old_password"].label = "Old password"
self.fields["old_password"].widget.attrs["autocomplete"] = "off"
# in original PasswordChangeForm file to reorder fields
示例3: get_context
# 需要导入模块: from django.forms import widgets [as 别名]
# 或者: from django.forms.widgets import PasswordInput [as 别名]
def get_context(self, name, value, attrs):
if not self.render_value:
value = self.empty_password_value
return super(PasswordInput, self).get_context(name, value, attrs)
示例4: generate_dynamic_form
# 需要导入模块: from django.forms import widgets [as 别名]
# 或者: from django.forms.widgets import PasswordInput [as 别名]
def generate_dynamic_form(self, data=None) -> Form:
form = Form(data=data)
meta = self.meta
if meta is None:
raise SnippetRequiredException('Could not find a valid skillet!!')
mode = self.get_value_from_workflow('mode', 'online')
if mode == 'online':
self.title = 'PAN-OS NGFW to Validate'
self.help_text = 'This form allows you to enter the connection information for a PAN-OS NGFW. This' \
'tool will connect to that device and pull it\'s configuration to perform the' \
'validation.'
target_ip_label = 'Target IP'
target_username_label = 'Target Username'
target_password_label = 'Target Password'
target_ip = self.get_value_from_workflow('TARGET_IP', '')
# target_port = self.get_value_from_workflow('TARGET_PORT', 443)
target_username = self.get_value_from_workflow('TARGET_USERNAME', '')
target_password = self.get_value_from_workflow('TARGET_PASSWORD', '')
target_ip_field = fields.CharField(label=target_ip_label, initial=target_ip, required=True,
validators=[FqdnOrIp])
target_username_field = fields.CharField(label=target_username_label, initial=target_username, required=True)
target_password_field = fields.CharField(widget=widgets.PasswordInput(render_value=True), required=True,
label=target_password_label,
initial=target_password)
form.fields['TARGET_IP'] = target_ip_field
form.fields['TARGET_USERNAME'] = target_username_field
form.fields['TARGET_PASSWORD'] = target_password_field
else:
self.title = 'PAN-OS XML Configuration to Validate'
self.help_text = 'This form allows you to paste in a full configuration from a PAN-OS NGFW. This ' \
'will then be used to perform the validation.'
label = 'Configuration'
initial = self.get_value_from_workflow('config', '<xml></xml>')
help_text = 'Paste the full XML configuration file to validate here.'
config_field = fields.CharField(label=label, initial=initial, required=True,
help_text=help_text,
widget=widgets.Textarea(attrs={'cols': 40}))
form.fields['config'] = config_field
return form