Created
October 13, 2015 20:38
-
-
Save Felipe00/ee9617632890d1e5a225 to your computer and use it in GitHub Desktop.
Problema ao renderizar uma tag @input (play framework)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="input-field col s6"> | |
@inputText(userForm("name"), 'id -> "name", '_label -> null) | |
<label for="name">NOME</label> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="input-field col s6"> | |
<input id="name" type="text"/> | |
<label for="name">Nome</label> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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