-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd-location.html
52 lines (47 loc) · 1.89 KB
/
add-location.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
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title>myTrip</title>
<link href="lib/ionic/css/ionic.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
<link href="css/ionic.app.css" rel="stylesheet">
-->
<!-- ionic/angularjs js -->
<script src="lib/ionic/js/ionic.bundle.js"></script>
<!-- cordova script (this will be a 404 during development) -->
<script src="cordova.js"></script>
<!-- your app's js -->
<script src="js/app.js"></script>
</head>
<ion-pane>
<body ng-app="myTrip" ng-controller="MyTripCtrl">
<ion-header-bar class="custom-blue" >
<button class="button button-icon ion-arrow-left-c" menu-toggle="left" onclick="window.parent.location.href = 'index.html'"></button>
<h1 class="title color-topic">MyTrip</h1>
<!-- New Task button-->
</ion-header-bar>
<ion-content>
<div class="col col-33">
<h1 class="a-head">新增旅遊景點</h1>
</div>
<div class="row">
<div class="col col 33">
<label class="item item-input">
<input type="text" placeholder="新增地點">
</label>
</div>
</div>
<div class="row">
<button class="a-button button button-full button-large button-clear button-positive ion-social-instagram-outline">
</button>
<button class="a-button button button-full button-large button-clear button-positive ion-images ">
</button>
</div>
</ion-content>
</ion-pane>
<script src="ng-material-floating-button/src/mfb-directive.js"></script>
</body>
</html>