I want to diaplay if the checkbox is checked or not
<html>
<head>
</head>
<body>
<form name="frm">
Languages:
<input type="checkbox" name="check" ng-model="check">telugu
<input type="checkbox" name="check" ng-model="check1">Hindi
<span ng-show="frm.check.$dirty && frm.check.$error.ng-checked">not-checked</span>
</form>
</body>
</html>