I am trying to bind data to the HTML page as below but data is not binding.
<body ng-app="Profileapp" ng-controller="ProfileController" >
{{username}}
</body>
My controller is
var app = angular.module('Profileapp',['ngFlash']);
app.controller('ProfileController',['$scope','$http','$window','Flash',function($scope,$http,$window,Flash) {
$scope.username = "sachin yadav";
}])