update
This commit is contained in:
@@ -5,4 +5,4 @@ POSTGRES_DB="users_db"
|
|||||||
|
|
||||||
# Node vars
|
# Node vars
|
||||||
SESSION_SECRET="super duper secret!"
|
SESSION_SECRET="super duper secret!"
|
||||||
API_KEY="ZjGXIfaEG1G4OkSHyB5wvqOQ5BPb9iav"
|
API_KEY="ZjGXIfaEG1G4OkSHyB5wvqOQ5BPb9iav"
|
||||||
|
|||||||
9
ProjectSourceCode/package-lock.json
generated
9
ProjectSourceCode/package-lock.json
generated
@@ -6,7 +6,7 @@
|
|||||||
"": {
|
"": {
|
||||||
"name": "web-services",
|
"name": "web-services",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "^1.1.3",
|
"axios": "^1.6.8",
|
||||||
"bcrypt": "^5.1.1",
|
"bcrypt": "^5.1.1",
|
||||||
"bcryptjs": "^2.4.3",
|
"bcryptjs": "^2.4.3",
|
||||||
"body-parser": "1.20.0",
|
"body-parser": "1.20.0",
|
||||||
@@ -165,10 +165,11 @@
|
|||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/axios": {
|
"node_modules/axios": {
|
||||||
"version": "1.6.7",
|
"version": "1.6.8",
|
||||||
"license": "MIT",
|
"resolved": "https://registry.npmjs.org/axios/-/axios-1.6.8.tgz",
|
||||||
|
"integrity": "sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"follow-redirects": "^1.15.4",
|
"follow-redirects": "^1.15.6",
|
||||||
"form-data": "^4.0.0",
|
"form-data": "^4.0.0",
|
||||||
"proxy-from-env": "^1.1.0"
|
"proxy-from-env": "^1.1.0"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"name": "web-services",
|
"name": "web-services",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "^1.1.3",
|
"axios": "^1.6.8",
|
||||||
"bcrypt": "^5.1.1",
|
"bcrypt": "^5.1.1",
|
||||||
"bcryptjs": "^2.4.3",
|
"bcryptjs": "^2.4.3",
|
||||||
"body-parser": "1.20.0",
|
"body-parser": "1.20.0",
|
||||||
|
|||||||
@@ -0,0 +1,37 @@
|
|||||||
|
const league_select = document.getElementById('league_dropdown');
|
||||||
|
const team_select = document.getElementById('team_dropdown');
|
||||||
|
|
||||||
|
document.addEventListener("DOMContentLoaded", function() {
|
||||||
|
|
||||||
|
league_select.addEventListener('change', updateTeamSelect);
|
||||||
|
|
||||||
|
function updateTeamSelect() {
|
||||||
|
var selectedLeague = league_select.value;
|
||||||
|
|
||||||
|
team_select.innerHTML = "";
|
||||||
|
console.log(selectedLeague);
|
||||||
|
// Add options based on the selected value from the first select element
|
||||||
|
if (selectedLeague === "La Liga") {
|
||||||
|
// Add options for La Liga
|
||||||
|
console.log("Hello");
|
||||||
|
|
||||||
|
addOption(team_select, "Option 1 for LL", "option1A");
|
||||||
|
addOption(team_select, "Option 2 for LL", "option2A");
|
||||||
|
} else if (selectedLeague === "Serie A") {
|
||||||
|
// Add options for Serie A
|
||||||
|
addOption(team_select, "Team 1 in Serie A", "option1B");
|
||||||
|
addOption(team_select, "Team 2 in Serie A", "option2B");
|
||||||
|
} else if (selectedLeague === "Bundesliga") {
|
||||||
|
// Add options for Bundesliga
|
||||||
|
addOption(team_select, "Option 1 for Bun", "option1C");
|
||||||
|
addOption(team_select, "Option 2 for Bun", "option2C");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function addOption(selectElement, text, value) {
|
||||||
|
var option = document.createElement("option");
|
||||||
|
option.text = text;
|
||||||
|
option.value = value;
|
||||||
|
selectElement.add(option);
|
||||||
|
}
|
||||||
|
});
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
|
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
|
|
||||||
|
|
||||||
const league_select = document.getElementById('league_dropdown');
|
|
||||||
const team_select = document.getElementById('team_dropdown');
|
|
||||||
|
|
||||||
league_select.addEventListener('change', updateTeamSelect);
|
|
||||||
|
|
||||||
function updateTeamSelect() {
|
|
||||||
var selectedLeague = league_select.value;
|
|
||||||
var teamSelect = team_select;
|
|
||||||
|
|
||||||
// Clear existing options
|
|
||||||
teamSelect.innerHTML = "";
|
|
||||||
|
|
||||||
// Add options based on the selected value from the first select element
|
|
||||||
if (selectedLeague === "La Liga") {
|
|
||||||
// Add options for La Liga
|
|
||||||
addOption(teamSelect, "Option 1 for LL", "option1A");
|
|
||||||
addOption(teamSelect, "Option 2 for LL", "option2A");
|
|
||||||
} else if (selectedLeague === "Serie A") {
|
|
||||||
// Add options for Serie A
|
|
||||||
addOption(teamSelect, "Team 1 in Serie A", "option1B");
|
|
||||||
addOption(teamSelect, "Team 2 in Serie A", "option2B");
|
|
||||||
} else {
|
|
||||||
// Add options for Bundesliga
|
|
||||||
addOption(teamSelect, "Option 1 for Bun", "option1C");
|
|
||||||
addOption(teamSelect, "Option 2 for Bun", "option2C");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function addOption(selectElement, text, value) {
|
|
||||||
var option = document.createElement("option");
|
|
||||||
option.text = text;
|
|
||||||
option.value = value;
|
|
||||||
selectElement.add(option);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
@@ -33,44 +33,6 @@
|
|||||||
<p class="mt-3">Already have an account? <a href="/login">Login</a></p>
|
<p class="mt-3">Already have an account? <a href="/login">Login</a></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script src = "js/registry-page/selectFunctions.js"> </script>
|
||||||
console.log("Hello");
|
|
||||||
const league_select = document.getElementById('league_dropdown');
|
|
||||||
const team_select = document.getElementById('team_dropdown');
|
|
||||||
|
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
|
|
||||||
league_select.addEventListener('change', updateTeamSelect);
|
|
||||||
|
|
||||||
function updateTeamSelect() {
|
|
||||||
var selectedLeague = league_select.value;
|
|
||||||
|
|
||||||
team_select.innerHTML = "";
|
|
||||||
console.log(selectedLeague);
|
|
||||||
// Add options based on the selected value from the first select element
|
|
||||||
if (selectedLeague === "La Liga") {
|
|
||||||
// Add options for La Liga
|
|
||||||
console.log("Hello");
|
|
||||||
|
|
||||||
addOption(team_select, "Option 1 for LL", "option1A");
|
|
||||||
addOption(team_select, "Option 2 for LL", "option2A");
|
|
||||||
} else if (selectedLeague === "Serie A") {
|
|
||||||
// Add options for Serie A
|
|
||||||
addOption(team_select, "Team 1 in Serie A", "option1B");
|
|
||||||
addOption(team_select, "Team 2 in Serie A", "option2B");
|
|
||||||
} else if (selectedLeague === "Bundesliga") {
|
|
||||||
// Add options for Bundesliga
|
|
||||||
addOption(team_select, "Option 1 for Bun", "option1C");
|
|
||||||
addOption(team_select, "Option 2 for Bun", "option2C");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function addOption(selectElement, text, value) {
|
|
||||||
var option = document.createElement("option");
|
|
||||||
option.text = text;
|
|
||||||
option.value = value;
|
|
||||||
selectElement.add(option);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user