Skip to content

Instantly share code, notes, and snippets.

@localdevm
Created May 11, 2017 12:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save localdevm/c0a7c760ef63c420dd6f61c516bc6105 to your computer and use it in GitHub Desktop.
Save localdevm/c0a7c760ef63c420dd6f61c516bc6105 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>FitBuddy Monitor</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<script src="app.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<link href="https://fonts.googleapis.com/css?family=Noto+Sans" rel="stylesheet">
<link rel="stylesheet" href="thema.css">
</script>
</head>
<body ng-app="fitbuddy" ng-controller="MainController" >
<div class ="wrapper">
<div class="inputfield">
<input type="text" ng-model="name" placeholder="Search" />
<button ng-click="reqdata">Request Data</button>
</div>
<div>
<p ng-repeat="voornaam in res">{{voornaam}}</p>
<p>{{name}}</p>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment