-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (91 loc) · 5.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height" />
<script type="text/javascript" data-main="js/main" src="js/require.js">
</script>
<link type="text/css" rel="stylesheet" href="css/bootstrap.min.css" />
<link type="text/css" rel="stylesheet" href="css/bootstrap-theme.min.css" />
<link type="text/css" rel="stylesheet" href="css/custom.css" />
<title>Hello World</title>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Project name</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container">
<h1>Not Ready</h1>
<button class="btn btn-primary" id="testb">Click me</button>
<br/>
<p id="testp">This text is for toggle
</p>
<a href="#" class="btn btn-default">Index</a><br/>
<a href="#welcome" class="btn btn-default">welcome</a><br/>
<a href="#tnc" class="btn btn-default">Term And Condition</a><br/>
<a href="#verifyNumber" class="btn btn-default">verify Number</a><br/>
<a href="#restore" class="btn btn-default">Restore</a><br/>
<a href="#profileInfo" class="btn btn-default">profile info</a><br/>
<a href="#welcome2App" class="btn btn-default">welcome to App</a><br/>
<a href="#setting" class="btn btn-default">Setting</a><br/>
<a href="#help" class="btn btn-default">Help</a><br/>
<a href="#account" class="btn btn-default">Account</a><br/>
<a href="#profile" class="btn btn-default">PRofile</a> <br/>
<a href="#chatSetting" class="btn btn-default">Cat Setting</a><br/>
<a href="#notification" class="btn btn-default">notification</a><br/>
<a href="#contacts" class="btn btn-default">Contacts</a><br/>
<a href="#about" class="btn btn-default">about</a><br/>
<a href="#faq" class="btn btn-default">faq</a><br/>
<a href="#systemStatus" class="btn btn-default">system status</a><br/>
<a href="#privacy" class="btn btn-default">Privacy</a><br/>
<a href="#paymentInfo" class="btn btn-default">Payment Info</a><br/>
<a href="#changeNumber" class="btn btn-default">change Number</a><br/>
<a href="#deleteMyAccount" class="btn btn-default">delete my account</a><br/>
<a href="#contactUs" class="btn btn-default">Contact us</a><br/>
<a href="#chat/123456" class="btn btn-default">Chat with me</a><br/>
<a href="#profile/456789" class="btn btn-default">See my Profile</a><br/>
<a href="#newGroup" class="btn btn-default">New Group</a><br/>
<a href="#newChat" class="btn btn-default">new Chat</a><br/>
<a href="#newBroadcastList" class="btn btn-default">New Broadcast List</a><br/>
</div>
<div id="dbStatus"></div>
<div id="contactStatus"></div>
<div id="localStorageStatus"></div>
<script type="text/javascript" src="cordova.js"></script>
</body>
</html>