Skip to content

Texts

TextBox

TextBox allows you to add a text type input.

ar.TextBox("text")

EmailField

EmailField allows you to add an email type input.

ar.EmailField("email")

HiddenField

HiddenField allows you to add a hidden type input.

Parameters:

Name Type Description Default
name str

A name.

required
initial str

An initial value.

required
ar.HiddenField("hidden", initial="foo")

PasswordField

PasswordField allows you to add a password type input.

ar.PasswordField("password")

SearchField

SearchField allows you to add a search type input.

ar.SearchField("search")

TelephoneField

TelephoneField allows you to add a tel type input.

ar.TelephoneField("tel")

URLField

URLField allows you to add a url type input.

ar.URLField("url")