-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 964 Bytes
/
index.html
File metadata and controls
30 lines (28 loc) · 964 Bytes
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
<!doctype html>
<html lang="en" data-framework="backbonejs">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Marionette Backbone.js</title>
<link rel="stylesheet" href="assets/css/bootstrap.css">
</head>
<body>
<div class="container">
<div id="formView" style="margin-top:5px">
<form class="form-inline" role="form">
<div class="form-group">
<label class="sr-only" for="exampleInputCity">City</label>
<input type="text" class="form-control" id="exampleInputCity"
placeholder="Pune">
</div>
<button type="submit" class="submit btn btn-default">Submit</button>
</form>
</div>
<div id="loadingSpin" class="container"></div>
<div id="mainView" class="container"></div>
</div>
<script data-main="./assets/js/require_main.js" src="assets/js/vendor/require.js"></script>
<!--Minified Version -->
<!--<script src="weather-app-min.js"></script>-->
</body>
</html>