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

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornachoparker <nacho@ownyourbits.com>2018-04-11 01:12:35 +0300
committernachoparker <nacho@ownyourbits.com>2018-04-11 02:24:53 +0300
commitf34a3ce9d4b5d6ac15975001f9ad532c6aec93ef (patch)
treedbdece830662fec1b9f121aadd6f62ea4bfe070f /ncp-web
parent165be0c6f6fb780988bccd1280c2895d4c15a5bd (diff)
docker: display message while the container inits for the first time
Diffstat (limited to 'ncp-web')
-rw-r--r--ncp-web/ncp-wait-msg.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/ncp-web/ncp-wait-msg.php b/ncp-web/ncp-wait-msg.php
new file mode 100644
index 00000000..8cdc978b
--- /dev/null
+++ b/ncp-web/ncp-wait-msg.php
@@ -0,0 +1,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> NextCloudPlus 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 NextCloudPlus 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>