Template:Appeal/FY2324 E3 XH/en: Difference between revisions

Content deleted Content added
Created page with "<html> <style> .appeal-layout { padding: 0 40px; display: flex; align-items: center; justify-content: center; gap: 24px; } .appeal-text { line-height: 1.8; } .appeal-text p.headline { line-height:1.7; font-size:26px; font-weight:bold; } .appeal-text p.paragraph { font-size:16px; } @media (max-width: 1400px) { .appeal-layout { flex-wr..."
 
No edit summary
Line 47:
</div>
<script>
// Get the URL parameters from the current URL
console.log("hello!");
const urlParams = new URLSearchParams(window.location.search);
 
// Check if the "fname" parameter exists
if (urlParams.has("fname")) {
// If it exists, assign its value to a variable
const fnameValue = urlParams.get("fname");
console.log("fname parameter exists, and its value is: " + fnameValue);
} else {
console.log("fname parameter does not exist in the URL.");
}
</script>
</html>