Contact Us

Get in touch with our team for any questions or support

Visit Us

University of Energy and Natural Resources

Sunyani, Bono Region

Ghana

Call Us

+233 (0) 20 123 4567

+233 (0) 20 123 4568

Monday - Friday, 8:00 AM - 5:00 PM

Email Us

hostels@uenr.edu.gh

support@uenr.edu.gh

We'll respond within 24 hours

Send us a Message

Fill out the form below and we'll get back to you as soon as possible

function showMessage(message, type) { const messageDiv = document.createElement('div'); messageDiv.textContent = message; messageDiv.className = `message ${type}`; messageDiv.style.cssText = ` position: fixed; top: 20px; right: 20px; background-color: ${type === 'success' ? '#28a745' : '#dc3545'}; color: white; padding: 15px 20px; border-radius: 5px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); z-index: 10000; animation: slideInRight 0.3s ease-out; `; document.body.appendChild(messageDiv); setTimeout(() => { messageDiv.style.animation = 'slideOutRight 0.3s ease-in'; setTimeout(() => { if (messageDiv.parentNode) { messageDiv.parentNode.removeChild(messageDiv); } }, 300); }, 3000); }