Last active
February 9, 2019 12:34
-
-
Save bergpb/5666df1acd20d44f33d1cabe735beddb to your computer and use it in GitHub Desktop.
Just a simple Hello World writed in Angular.
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
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Simple AngularJS App</title> | |
| <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css"> | |
| <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.5/angular.min.js"></script> | |
| <script src="app.js"></script> | |
| </head> | |
| <body ng-app="nameApp"> | |
| <div ng-controller="NameCtrl" class="container"> | |
| <div class="row pt-4 col-md-6 offset-md-3"> | |
| <div class="col"> | |
| <form> | |
| <div class="form-group"> | |
| <label>Nome:</label> | |
| <input type="text" class="form-control" ng-model="firstName" placeholder="Digite seu nome"> | |
| </div> | |
| <div class="form-group"> | |
| <label>Sobrenome</label> | |
| <input type="text" class="form-control" ng-model="lastName" placeholder="Digite seu sobrenome"> | |
| </div> | |
| <button ng-click="clearFields()" class="btn btn-warning">Limpar Campos</button> | |
| </form> | |
| </div> | |
| </div> | |
| <div class="row pt-4 col-md-6 offset-md-3"> | |
| <p> | |
| <span ng-show="firstName != null" class="mx-auto">Nome: {{firstName}}</span> | |
| <br> | |
| <span ng-show="lastName != null" class="mx-auto">Sobrenome: {{lastName}}</span> | |
| </p> | |
| </div> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment