-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
28 lines (28 loc) · 1.15 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!doctype html>
<html lang="en" ng-app="h2cApp">
<head>
<meta charset="utf-8">
<title>Harvest to Cashboard Converter</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.17/angular.min.js"></script>
<script src="harvest2cashboard.js"></script>
</head>
<body>
<div ng-controller="harvest2CashboardController as h2c">
<form ng-submit="h2c.doSomething()">
<div class='form-group'>
<input type="text" ng-model="h2c.userName" size="30" placeholder="Username">
</div>
<div class='form-group'>
<input type="text" ng-model="h2c.password" size="30" placeholder="Password">
</div>
<div class='form-group'>
<input type="text" ng-model="h2c.subdomain" size="30" placeholder="Subdomain">
</div>
<input class="btn-primary" type="submit" value="do">
</form>
<div/>
</body>
</html>