MobileApp/www/index.html

52 lines
2.0 KiB
HTML
Raw Normal View History

2017-06-16 18:47:16 -06:00
<!DOCTYPE html>
2017-12-16 13:36:56 -07:00
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
2017-06-16 18:47:16 -06:00
<html>
<head>
<title>Netsyms Business for Mobile</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2017-06-29 04:01:49 -06:00
2017-06-16 18:47:16 -06:00
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link rel="stylesheet" href="css/material-color.min.css" />
<link rel="stylesheet" href="css/app.css" />
2017-06-29 04:01:49 -06:00
<script src="cordova.js"></script>
<script src="js/polyfills.js"></script>
2017-06-16 18:47:16 -06:00
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
2018-03-27 16:05:13 -06:00
<script src="js/accounts.js"></script>
2017-06-16 18:47:16 -06:00
<script src="js/app.js"></script>
</head>
<body>
<div id="modal-load-box" class="container" style='z-index: 1000;'>
</div>
2017-06-29 04:01:49 -06:00
2017-06-30 00:56:47 -06:00
<nav class="navbar navbar-inverse navbar-fixed-top" id="navbar">
<div class="container-fluid">
<div class="nav navbar-nav navbar-left" id="navbar-header">
<span class="navbar-brand" id="navbar-title" style="color: white;">Business</span>
2017-06-30 00:56:47 -06:00
</div>
<ul class="nav navbar-nav navbar-right" id="navbar-buttons">
</ul>
2017-06-30 00:56:47 -06:00
</div>
</nav>
<div id="content-zone" class="container" style="margin-top: 75px;">
<div class="app-dock-container">
<div class="app-dock" id="app-dock">
<div style="margin-top: 50px;">
<img src="img/loader.gif" style="width: 65px; height: 65px;" alt=""/>
2017-06-30 00:56:47 -06:00
</div>
<div style="width: 100%;"></div>
<p class="loading-text">Loading...</p>
2017-06-30 00:56:47 -06:00
</div>
</div>
2017-06-16 18:47:16 -06:00
</div>
</body>
</html>