45 lines
1.1 KiB
HTML
45 lines
1.1 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd";>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
|
|
<html ng-app="LoginApp">
|
|
<head>
|
|
<link rel="stylesheet"
|
|
href="http://apps.bdimg.com/libs/bootstrap/3.2.0/css/bootstrap.min.css">
|
|
<script src="http://apps.bdimg.com/libs/angular.js/1.3.9/angular.min.js"></script>
|
|
</head>
|
|
|
|
<body ng-controller="LoginController">
|
|
|
|
<div align="center">
|
|
|
|
<div>
|
|
<img src="/img/logo.png" width="196" height="46">
|
|
</div>
|
|
|
|
<div class="input-group">
|
|
<input type="text" class="form-control" placeholder="Username"
|
|
ng-model="user_name">
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<div class="input-group">
|
|
<input type="password" class="form-control" placeholder="password"
|
|
ng-model="password">
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<div>
|
|
<input type="checkbox"> Remember me
|
|
<button class="btn btn-success" ng-disabled="incomplete"
|
|
type="submit" ng-click="login()">
|
|
<span class="glyphicon glyphicon-hand-right"></span> SIGN-IN
|
|
</button>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="/js/app/LoginApp.js"></script>
|
|
<script src="/js/controller/LoginController.js"></script>
|
|
</body>
|
|
</html> |