-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign-up.html
60 lines (58 loc) · 2.49 KB
/
sign-up.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
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>myTrip</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<link href="lib/ionic/css/ionic.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script src="lib/ionic/js/ionic.bundle.js"></script>
<script src="js/app.js"></script>
<script src="cordova.js"></script>
</head>
<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 = 'login.html'"></button>
<h1 class="title color-topic">MyTrip</h1>
<!-- New Task button-->
</ion-header-bar>
<ion-view view-title="sign up" name="sign up-view">
<ion-content class="padding">
<div class="list list-inset">
<div class="row">
<div class="col col 40 ">
<label class="item item-input">
<input type="text" placeholder="帳號" ng-model="data.username">
</label>
</div>
</div>
<div class="row">
<div class="col col 33">
<label class="item item-input">
<input type="password" placeholder="密碼" ng-model="data.password">
</label>
</div>
</div>
<div class="row">
<div class="col col 33">
<label class="item item-input">
<input type="password" placeholder="再次確認密碼" ng-model="data.password">
</label>
</div>
</div>
<div class="row">
<div class="col col 33">
<label class="item item-input">
<input type="text" placeholder="電郵地址" ng-model="data.email">
</label>
</div>
</div>
</div>
<div class="col text-center">
<button class="tab-item button button-assertive" onclick="window.parent.location.href = 'index.html'">註冊</button>
</div>
</ion-content>
</ion-view>
<script src="ng-material-floating-button/src/mfb-directive.js"></script>
</body>
</html>