密码输入字段的漏勺模式数据类型定义?
colander schema data type define for password input filed?
我使用 deform 和 colander 创建登录表单(电子邮件和密码字段)架构。
但提交的密码显示我的密码字符。
如何正常隐藏 HTML 密码输入字段。
email = colander.SchemaNode(
colander.Str(),
title='Email',
validator=colander.All(colander.Email()),
widget=deform.widget.TextInputWidget(size=40, maxlength=260, type='email', placeholder="youremail@example.com"),
description="The email address under which you have your account.")
password = colander.SchemaNode(colander.String())
您只创建了一个没有 PasswordWidget 的架构节点。见 deform demo example:
password = colander.SchemaNode(
colander.String(),
validator=colander.Length(min=5, max=100),
widget=deform.widget.PasswordWidget(),
description='Enter a password')
我使用 deform 和 colander 创建登录表单(电子邮件和密码字段)架构。 但提交的密码显示我的密码字符。 如何正常隐藏 HTML 密码输入字段。
email = colander.SchemaNode(
colander.Str(),
title='Email',
validator=colander.All(colander.Email()),
widget=deform.widget.TextInputWidget(size=40, maxlength=260, type='email', placeholder="youremail@example.com"),
description="The email address under which you have your account.")
password = colander.SchemaNode(colander.String())
您只创建了一个没有 PasswordWidget 的架构节点。见 deform demo example:
password = colander.SchemaNode(
colander.String(),
validator=colander.Length(min=5, max=100),
widget=deform.widget.PasswordWidget(),
description='Enter a password')