UPDC Home: Difference between revisions

Last edited by on 02 07 2026
Jump to: navigation, search
imported>Admin
No edit summary
imported>Admin
No edit summary
Line 41: Line 41:
     border-color: #007cba;
     border-color: #007cba;
     box-shadow: 0 0 5px rgba(0,124,186,0.3);
     box-shadow: 0 0 5px rgba(0,124,186,0.3);
}
.updc-search button {
    margin-left: 10px;
    padding: 12px 20px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.updc-search button:hover {
    background: #005a87;
}
}


Line 162: Line 178:
}
}
</style>
</style>
<script>
function handleSearch() {
    const searchInput = document.getElementById('updc-search-input');
    const query = searchInput.value.trim();
   
    if (query) {
        // Redirect to MediaWiki search page
        window.location.href = '/wiki/index.php?title=Special:Search&search=' + encodeURIComponent(query);
    }
}
function handleKeyPress(event) {
    if (event.key === 'Enter') {
        handleSearch();
    }
}
// Add event listeners when page loads
document.addEventListener('DOMContentLoaded', function() {
    const searchInput = document.getElementById('updc-search-input');
    const searchButton = document.getElementById('updc-search-button');
   
    if (searchInput) {
        searchInput.addEventListener('keypress', handleKeyPress);
    }
   
    if (searchButton) {
        searchButton.addEventListener('click', handleSearch);
    }
});
</script>


<div class="updc-homepage">
<div class="updc-homepage">
Line 167: Line 215:
<h1>KNOW MORE ABOUT UPDC DATA COMMONS</h1>
<h1>KNOW MORE ABOUT UPDC DATA COMMONS</h1>
<div class="updc-search">
<div class="updc-search">
<input type="text" placeholder="What are you searching for?" />
<input type="text" id="updc-search-input" placeholder="What are you searching for?" />
<button id="updc-search-button" type="button">Search</button>
</div>
</div>
</div>
</div>

Revision as of 06:46, 25 September 2025

KNOW MORE ABOUT UPDC DATA COMMONS

ℹ

About UPDC

This section contains Wiki pages that describe what the UPDC Data Commons is, the services that we offer, and the team that maintains our operations.

Learn More
⚙

Using UPDC Services

This section details how users can access UPDC services, utilize our data management tools, and communicate service requests to our team via the support portal.

Learn More
⚖

Policies and Guidelines

This section lists the different policies and guidelines implemented by the UPDC team concerning data management, security, and operational procedures.

Learn More

Recent Updates