-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (30 loc) · 1.08 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
29
30
31
32
33
34
35
36
37
38
39
<!doctype html>
<html lang="en" ng-app="LunchCheck">
<head>
<title>Lunch Checker</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="module1-solution/styles/bootstrap.min.css">
<style>
.message { font-size: 1.3em; font-weight: bold; }
</style>
<script type="text/javascript" src="module1-solution/js/angular.min.js"></script>
<script type="text/javascript" src="module1-solution/js/app.js"></script>
</head>
<body>
<div class="container">
<h1>Lunch Checker</h1>
<div ng-controller="LunchCheckController">
<div class="form-group">
<input id="lunch-menu" type="text" placeholder={{menuPlaceHolder}} class="form-control" ng-model="menu">
</div>
<div class="form-group">
<button class="btn btn-default" ng-click="checkMenuCount()">{{btnText}}</button>
</div>
<div class="form-group message">
<!-- Your message can go here. -->
{{message}}
</div>
</div>
</div>
</body>
</html>