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:
authorbit67 <37391694+bit67@users.noreply.github.com>2018-05-22 21:12:18 +0300
committernachoparker <nacho@ownyourbits.com>2018-05-22 21:12:18 +0300
commit99d9f4782e54b9a519e85babc54715c8cf066c73 (patch)
treee8e26109d8e2af253305bde1e6711df932a7a32d
parent061d2ae3fc71992c0f82db27348bc3a665cd301d (diff)
I've updated the Activate web page changing NextCloudPlus back to NextCloudPi (#512)
Changed NextCloudPlus to NextCloudPi in activate web page.
-rw-r--r--ncp-web/activate/index.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/ncp-web/activate/index.php b/ncp-web/activate/index.php
index bc31bf5c..b0ecf0b8 100644
--- a/ncp-web/activate/index.php
+++ b/ncp-web/activate/index.php
@@ -3,7 +3,7 @@
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
- <title> NextCloudPlus Activation </title>
+ <title> NextCloudPi Activation </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">
@@ -29,15 +29,15 @@
$nc_pwd = rtrim( base64_encode( random_bytes(32) ) , '=' ); // remove last '='. Remove rtrim in the future
$ncp_pwd = rtrim( base64_encode( random_bytes(32) ) , '=' ); // remove last '='. Remove rtrim in the future
echo <<<HTML
- <h1>NextCloudPlus Activation</h1>
- <p>Your NextCloudPlus user is </p><input readonly type="text" size=32 value="ncp">
- <p>Your NextCloudPlus password is </p><input readonly id="ncp-pwd" type="text" size=32 value="{$ncp_pwd}">&nbsp;&nbsp;<img id="cp-ncp" src="../img/clippy.svg"><span id="cp-ncp-ok"></span>
- <p>Save this password in order to access to the NextCloudPlus web interface at https://nextcloudplus.local:4443</p>
+ <h1>NextCloudPi Activation</h1>
+ <p>Your NextCloudPi user is </p><input readonly type="text" size=32 value="ncp">
+ <p>Your NextCloudPi password is </p><input readonly id="ncp-pwd" type="text" size=32 value="{$ncp_pwd}">&nbsp;&nbsp;<img id="cp-ncp" src="../img/clippy.svg"><span id="cp-ncp-ok"></span>
+ <p>Save this password in order to access to the NextCloudPi web interface at https://nextcloudpi.local:4443</p>
<p>This password can be changed using 'nc-passwd'</p>
<hr>
<p>Your NextCloud user is </p><input readonly type="text" size=32 value="ncp">
<p>Your Nextcloud password is </p><input readonly id="nc-pwd" type="text" size=32 value="{$nc_pwd}">&nbsp;&nbsp;<img id="cp-nc" src="../img/clippy.svg"><span id="cp-nc-ok"></span>
- <p>Save this password in order to access NextCloud https://nextcloudplus.local</p>
+ <p>Save this password in order to access NextCloud https://nextcloudpi.local</p>
<p>This password can be changed from the Nextcloud user configuration</p>
<br>
<p>
@@ -55,7 +55,7 @@ HTML;
</div>
<footer role="contentinfo">
<p class="info">
- <a href="https://ownyourbits.com/2017/02/13/nextcloud-ready-raspberry-pi-image/" target="_blank" rel="noreferrer noopener">NextCloudPlus</a> – Keep your data close</p>
+ <a href="https://ownyourbits.com/2017/02/13/nextcloud-ready-raspberry-pi-image/" target="_blank" rel="noreferrer noopener">NextCloudPi</a> – Keep your data close</p>
</footer>
<?php
include('../csrf.php');