diff --git a/src/index.php b/src/index.php index 181d0fa..89b66cf 100644 --- a/src/index.php +++ b/src/index.php @@ -32,7 +32,6 @@ - @@ -66,7 +65,6 @@
-

Note: To authenticate against the test server, you can user username "DevCoPStudent" and password "/10T41.Vf\0w~=O". Members can visit the Dev CoP to access additional accounts.

diff --git a/src/js/main.js b/src/js/main.js index e153f3a..5dceb58 100644 --- a/src/js/main.js +++ b/src/js/main.js @@ -181,8 +181,6 @@ $(document).ready(function() { if ((document.getElementById("appIDField").value == '' ) && (document.getElementById("appKeyField").value == '')) { if (localStorage.getItem('lastProfile') == 'authProfile') { loadProfile('authProfile'); - } else { - loadDefaults(); } } diff --git a/src/js/profiles.js b/src/js/profiles.js index f0504e7..438e243 100644 --- a/src/js/profiles.js +++ b/src/js/profiles.js @@ -105,15 +105,3 @@ function removeProfile(profileName) { localStorage.setItem('userProfiles', p.toString()); } -function loadDefaults() { - var defaultProfile = "New Profile"; - $('#hostField').val("devcop.brightspace.com"); - $('#portField').val("443"); - $('#appIDField').val('31brpbcCLsVim_K4jJ8vzw'); - $('#appKeyField').val('sagYSTT_HOts39qrGQTFWA'); - $('#schemeField').prop('checked', true); - $('#profileNameField').parent().show(); - $('#rmProfile').hide(); - $("#userProfiles").val(defaultProfile); - localStorage.setItem('lastProfile', defaultProfile); -}