Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ncp-wait-msg.php « ncp-web - github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c0ba2671ef823abb5e7d254115d835f1297bd4ca (plain)
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
<!DOCTYPE html>
<html class="ng-csp" data-placeholder-focus="false" lang="en">
<head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <meta charset="utf-8">
  <title> NextCloudPi Initialization </title>
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="referrer" content="never">
  <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
<?php session_start(); ?>
</head>
<body id="body-login">
  <div class="wrapper">
    <div class="v-align">
      <header role="banner">
        <div id="header">
          <p style="font-size:130%">Initializing NextCloudPi for the first time</p>
          <p style="font-size:130%">Please wait...</p>
        </div>
      </header>
    </div>
  </div>
  <script type="text/javascript">
    setTimeout( function(){ window.location.reload( true ); }, 5000 );
  </script>
</body>
</html>