CampusAlert
Sign In
CampusAlert

Create Student Account

Enter your details to begin verifying your identity.

1
Details
2
Verification
3
Access
alternate_email

info Must end with @unilag.edu.ng

verified_user

Upon submission, you will be redirected to verify your email. You must verify your account before you can report issues.

Already have an account? Login here

UniLag Logo
// Add subtle animation to side panel elements document.addEventListener('DOMContentLoaded', () => { const items = document.querySelectorAll('section:first-child .relative > div'); items.forEach((item, index) => { item.style.opacity = '0'; item.style.transform = 'translateY(20px)'; item.style.transition = 'all 0.6s cubic-bezier(0.22, 1, 0.36, 1)'; setTimeout(() => { item.style.opacity = '1'; item.style.transform = 'translateY(0)'; }, 300 + (index * 150)); }); });