summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorpliablepixels <pliablepixels@gmail.com>2016-05-17 09:31:22 -0400
committerpliablepixels <pliablepixels@gmail.com>2016-05-17 09:31:22 -0400
commitc5da78012f8e6018c314a5a023a1cc15d2381e13 (patch)
tree3bc68e853ae3a1b62ee0ac81006e3d2c1c2b7d22 /www
parent0693cc68526b9a042ccc4dbf16b15fb0aff47e17 (diff)
#234 - add warning about password # and other funky chars
Former-commit-id: 6cfff319a4e73eb23e71f67fd3d21dd5c028a77b
Diffstat (limited to 'www')
-rw-r--r--www/js/WizardCtrl.js3
-rw-r--r--www/templates/wizard.html1
2 files changed, 4 insertions, 0 deletions
diff --git a/www/js/WizardCtrl.js b/www/js/WizardCtrl.js
index d14cfeab..2e8ae18d 100644
--- a/www/js/WizardCtrl.js
+++ b/www/js/WizardCtrl.js
@@ -218,9 +218,12 @@ angular.module('zmApp.controllers').controller('zmApp.WizardCtrl', ['$scope', '$
var tail = "/nph-zms?mode=single&monitor="+success;
if ($scope.wizard.useauth && $scope.wizard.usezmauth)
{
+
tail+= "&user="+$scope.wizard.zmuser+"&pass="+$scope.wizard.zmpassword;
+ console.log ("****CDING " + tail);
}
+
$ionicLoading.show({
template: "discovering...",
noBackdrop: true,
diff --git a/www/templates/wizard.html b/www/templates/wizard.html
index 2865d35a..d4c9412a 100644
--- a/www/templates/wizard.html
+++ b/www/templates/wizard.html
@@ -51,6 +51,7 @@
<label class="item item-input item-floating-label" >
<span class="input-label">password</span>
<input type="password" ng-model="wizard.zmpassword" placeholder="zm auth password" >
+ <p>note: if your password has # or ? in it, the wizard will fail cgi detection.</p>
</label>
</div>