Created
December 24, 2014 10:44
-
-
Save ccfiel/6fd8d14e1a45e1ebe4b8 to your computer and use it in GitHub Desktop.
This file contains 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="container-fluid" ng-app="receta"> | |
<div class="panel panel-success"> | |
<div class="panel-heading"> | |
<h1 ng-if="name">Hello, {{name}}</h1> | |
</div> | |
<div class="panel-body"> | |
<form class="form-inline"> | |
<div class="form-group"> | |
<input class="form-control" type="text" placeholder="Enter your name" autofocus ng-model="name"> | |
</div> | |
</form> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment