Newer
Older
ubFramework / Portal / docroot / templates / admin / wrapper / default.html
@Christopher W. Olsen Christopher W. Olsen on 10 Dec 2017 2 KB Cleaning Up Making It A Sub Module
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
  <meta name="description" content="PSC Tech" />
  <meta name="keywords" content="ubix,technologies,servers,hardware,new york,city,storage,email,hosting,serving,web" />

  <!--  MrOlsen (2015-10-18) NOTE: Phasing Out
  <link href="/global/global.manage.css" rel="stylesheet" type="text/css" />
  -->

  <link rel="stylesheet" href="/assets/css/site_defaults.css" />

  <!-- jQuery -->
  <script src="/assets/js/jquery/jquery-2.1.3.js"></script>

  <!-- jQuery UI -->
  <script src="/assets/js/jquery/ui/jquery-ui.js"></script>
  <link rel="stylesheet" href="/assets/js/jquery/ui/jquery-ui.css" />

  <title>{_SITE_NAME}: Admin Portal - {PAGE_TITLE}</title>
</head>

<body>
<script>
  $aL_body = $("body");
  $aL = 0;

  $(document).on({
    ajaxStart: function() { if ($aL == 0) { $aL = 1; $aL_body.addClass("loading"); } },
    ajaxStop: function() { $aL_body.removeClass("loading"); $aL = 0; }
  });

 $(document).tooltip();
</script>

<div class="wrapper">
  <div id="main_container">
    <div id="header_container">
      <div style="position: absolute;left: 0;bottom: 10px;"><a href="/admin/" target="_self"><img src="/assets/images/spherepbx_logo.png" border="0" height="80px" /></a></div>
      <div class="main_menu" id="_ADMIN_MENU"><a href="/admin/?data[logout]=yes">Log Out</a></div>
      <div class="user_info" id="_USER_INFO">Not Authenticated</div>
    </div>
    <!-- begin bottom container -->
    <div id="content_container">
      <div id="page_nav">{MENU}</div>
      <div id="page_body">{BODY}</div>
    </div>
    <div id="footer_nav"><a href="/legal/TERMS OF SERVICE.pdf" target="_new">customer agreeement</a> | <a href="/privacy.php">privacy statement</a> | <a href="http://www.ubixtechnologies.com/contact/">contact us</a></div>	
  </div>
</div>

<div class="loading_modal">
<h1 style="top: 0;font-size: 40px;text-align:center;width:100%;margin-top: 150px;">Please Wait...</h1>
<img src="/assets/images/PBX_Logo.png" class="rotimage" />
<h1 style="position:absolute;bottom: 0;font-size: 40px;text-align:center;width:100%;margin-bottom: 150px;">We're Loading Important Data For You</h1>
</div>

<div id="login_modal" title="System Login">
  <center><h1>Welcome To The SpherePBX Portal</h1></center>
  <p class="validateTips"></p>
  <form method="post" id="auth_form">
  <table>
  <tr>
    <td colspan="2"><center><h2>Admin Credentials</h2></center></td>
  </tr>
  <tr>
    <td>E-Mail:</td>
    <td><input type="text" name="data[email]" value="" style="width: 200px;" /></td>
  </tr>
  <tr>
  <td>Password:</td>
  <td><input type="password" name="data[password]" value="" style="width: 200px;" /></td>
  </tr>
  </table>
  </form>
</div>

<!--  Initialize SpherePBX System -->
<script src="/assets/js/lib/common.js"></script>

</body>
</html>