31 lines
633 B
HTML
31 lines
633 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf8">
|
|
<title>Exercice: utilisation de service</title>
|
|
</head>
|
|
<!-- Déclaration de l'application -->
|
|
<body ng-app="Exo">
|
|
|
|
<div ng-controller="MainCtrl">
|
|
|
|
<label>Nom</label>
|
|
<input type="text" ng-model="data.nom" />
|
|
<br />
|
|
|
|
<label>Prénom</label>
|
|
<input type="text" ng-model="data.prenom" />
|
|
<br />
|
|
|
|
<label>Age</label>
|
|
<input type="number" ng-model="data.age" />
|
|
<br />
|
|
|
|
<button>Envoyer</button>
|
|
</div>
|
|
|
|
<!-- Import de du framework Angular -->
|
|
<script src="../node_modules/angular/angular.js"></script>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|