templates/account/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
  3.     <head>
  4.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5.         <title>{% block title %}{% endblock %}</title>
  6.         {% block stylesheets %}
  7.         <link rel="stylesheet" type="text/css" href="../../styles/dist/common.css" /> 
  8.         <link rel="stylesheet" type="text/css" href="../../styles/dist/fresh.css" /> 
  9.         {% endblock %}
  10.         
  11.         <link rel="icon" type="image/png" href="/favicon.png">
  12.             <meta name="viewport" content="width=device-width, initial-scale=1" />
  13.     </head>
  14.     <body data-ng-app="account" class="account">
  15.         <noscript>
  16.             <div align='center'>
  17.                 <p>Zane Benefits requires Javascript to be enabled on your browser. To continue, please
  18.                     enable Javascript.  If you are using Internet Explorer, javascript might have been
  19.                     automatically disabled because of your security settings.  To change this, go to
  20.                     "Internet Options" and set you security level to Medium.</p>
  21.                 <p>Refresh this page once you've enabled Javascript</p>
  22.             </div>
  23.         </noscript>
  24.         <a href="{{ path('login_home') }}"><img class="logo" src="/images/logo.svg"/></a>
  25.         <div class="login_form">
  26.             <div class='container'>
  27.                 <h2>{% block subtitle %}{% endblock %}</h2>
  28.             {% for message in app.flashes('account') %}
  29.                 <div class="warning">{{ message }}</div>
  30.             {% endfor %}
  31.                 {% block content %}{% endblock %}
  32.             </div>
  33.         </div>
  34.         <br /><br />
  35.         
  36.         <div align='center' style='color:#999999; font-size:10px;'>
  37.             Copyright © {{ 'now' | date('Y') }} Zane Benefits, LLC. All Rights Reserved. Patent Pending. Version 8.21.07.07&nbsp; &nbsp; &nbsp;
  38.         </div>
  39.         <script type="text/javascript">
  40.             var _gaq = _gaq || [];
  41.             _gaq.push(['_setAccount', 'UA-3894367-3']);
  42.             _gaq.push(['_setDomainName', 'zanehra.com']);
  43.             _gaq.push(['_trackPageview']);
  44.             (function() {
  45.             var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  46.             ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  47.             var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  48.             })();
  49.         </script>
  50.         <!-- Start of zanehealth Zendesk Widget script -->
  51.         <script id="ze-snippet" src="https://static.zdassets.com/ekr/snippet.js?key=349e35bd-bbeb-45db-a5ce-34a2172a9782"> </script>
  52.         <!-- End of zanehealth Zendesk Widget script -->
  53.         
  54.         {% block javascript %}
  55.             <script src="../../include/javascript/dist/account.js"></script>
  56.         {% endblock %}
  57.         
  58.     </body>
  59. </html>