<HTML>
  <HEAD>
    <TITLE>{$global_titel}</TITLE>
    <link rel="stylesheet" type="text/css" href="templates/{$global_template}/css/styles.css">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <style type="text/css">
      .loader {
      border: 16px solid #f3f3f3; /* Light grey */
      border-top: 16px solid #3498db; /* Blue */
      border-radius: 50%;
      width: 120px;
      height: 120px;
      animation: spin 3.0s linear infinite;
      }
      @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
      }
    </style>
    <script type="text/javascript">
      function onloadfunc() {
      location.replace("{$load_page}.php?token={$global_token}");
      }
    </script>
    <!--[if lt IE 7]>
    <script defer type="text/javascript" src="templates/{$global_template}/images/pngfix.js"></script>
    <![endif]-->
  </HEAD>
  <body onload="onloadfunc()">
     <center>
      {$load_text}<br><br>
      <div class="loader"></div>
    </center>
  </body>
</html>