forked from nextcloud/nextcloudpi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathncp-wait-msg.php
27 lines (27 loc) · 901 Bytes
/
ncp-wait-msg.php
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>