schumiel
schumiel

Reputation: 51

insert TYPO3 Fluid input type email

how do I get the type="email" via fluid on my input?

<f:form.textfield readonly="1" class="email" />

Output:

<input readonly="" class="email" type="text">

Upvotes: 0

Views: 506

Answers (1)

Georg Ringer
Georg Ringer

Reputation: 7939

What about

<f:form.textfield type="email" readonly="1" class="email" />

Upvotes: 2

Related Questions