Contact: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
mNo edit summary  | 
				mNo edit summary  | 
				||
| Line 10: | Line 10: | ||
     // Decoding the Base64 email  |      // Decoding the Base64 email  | ||
     const email = atob('YnRvYSgibWF6dW1kZXJAZ3d1LmVkdSIp'); // replace with Base64 encoded email  |      const email = atob('YnRvYSgibWF6dW1kZXJAZ3d1LmVkdSIp'); // replace with Base64 encoded email  | ||
     document.getElementById('email').innerHTML = '<a href="mailto:' +   |      document.getElementById('email').innerHTML = '<a href="mailto:' + YnRvYSgibWF6dW1kZXJAZ3d1LmVkdSIp + '">' + email + '</a>';  | ||
</script>  | </script>  | ||
Revision as of 20:03, 16 December 2024
Opportunities
    Main article: Opportunities
Interested in joining our team? Learn about our team.
<script>
   // Decoding the Base64 email
   const email = atob('YnRvYSgibWF6dW1kZXJAZ3d1LmVkdSIp'); // replace with Base64 encoded email
   document.getElementById('email').innerHTML = '<a href="mailto:' + YnRvYSgibWF6dW1kZXJAZ3d1LmVkdSIp + '">' + email + '</a>';
</script>