Skip to content

Instantly share code, notes, and snippets.

@Felipe00
Created October 13, 2015 20:38
Show Gist options
  • Save Felipe00/ee9617632890d1e5a225 to your computer and use it in GitHub Desktop.
Save Felipe00/ee9617632890d1e5a225 to your computer and use it in GitHub Desktop.
Problema ao renderizar uma tag @input (play framework)
<div class="input-field col s6">
@inputText(userForm("name"), 'id -> "name", '_label -> null)
<label for="name">NOME</label>
</div>
<div class="input-field col s6">
<input id="name" type="text"/>
<label for="name">Nome</label>
</div>
<div class="input-field col s6">
<dl class=" " id="name_field">
<dt>
<label for="name"></label>
</dt>
<dd>
<input type="text" id="name" name="name" value="" />
</dd>
</dl>
<label for="name">NOME</label>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment