Reputation: 51
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
Reputation: 7939
What about
<f:form.textfield type="email" readonly="1" class="email" />
Upvotes: 2