mirror of
https://github.com/nextcloud/nextcloudpi.git
synced 2026-01-10 15:12:01 -03:30
28 lines
901 B
PHP
28 lines
901 B
PHP
<!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>
|