Created
September 23, 2014 17:08
-
-
Save cerkit/9617723d6df69f4d1a56 to your computer and use it in GitHub Desktop.
AngularJS client app for basic authentication - Index.html page
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
<!DOCTYPE html> | |
<html ng-app="app"> | |
<head> | |
<title>Sample Angular Client for Basic Authentication</title> | |
<meta name="description" content=""> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<!-- Place favicon.ico and apple-touch-icon.png in the root directory --> | |
<link rel="stylesheet" href="css/normalize.css"> | |
<link rel="stylesheet" href="css/main.css"> | |
<!-- Latest compiled and minified CSS for Bootstrap --> | |
<link href="css/bootstrap.min.css" rel="stylesheet" /> | |
<!-- Optional theme --> | |
<!--<link href="css/bootstrap-theme.min.css" rel="stylesheet" />--> | |
<link href="css/bootstrap.flatly.min.css" rel="stylesheet" /> | |
<script src="js/vendor/modernizr-2.6.2.min.js"></script> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.js"></script> | |
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.25/angular.js"></script> | |
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.10.2.min.js"><\/script>')</script> | |
<script src="js/plugins.js"></script> | |
<script src="js/bootstrap.min.js"></script> | |
<script src="js/vendor/angular-resource.min.js"></script> | |
<script src="js/vendor/angular-cookies.min.js"></script> | |
<script src="js/vendor/angular-timer.min.js"></script> | |
<script src="app/app.js"></script> | |
<script src="app/factories/base64-factory.js"></script> | |
<script src="app/controllers/controllers.js"></script> | |
</head> | |
<body ng-controller="SampleController"> | |
<div class="h2 label-info">{{currentUser | uppercase}}</div> | |
<ul> | |
<li ng-repeat="value in Model"> | |
{{value}} | |
</li> | |
</ul> | |
<br /> | |
<br /> | |
<button class="btn-default h2" ng-click="logout()">Logout</button> | |
<login-dialog /> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment