Created
October 15, 2015 18:54
-
-
Save Felipe00/c4c2bd2160bc00b6d550 to your computer and use it in GitHub Desktop.
align button problem
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="card"> | |
<div class="col s12"> | |
<div class="row"> | |
<!-- like <form> tag --> | |
@form(routes.MainUserController.findUserByName(), 'class -> "container") { | |
<div class="input-field col s8"> | |
<input type="text" id="name" name="name" required placeholder="Pesquise um cliente" value="@userForm.apply(" name").value" /> | |
</div> | |
<div class="col s4"> | |
<button class="btn waves-effect waves-light" type="submit" | |
name="action"> | |
Buscar<i class="material-icons right">send</i> | |
</button> | |
</div> | |
} | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment