//To change the "login or fill name" label on the event details page
var myPage = document.getElementById('idGeneralFormContainer');
if (myPage){
myPage.innerHTML = myPage.innerHTML.replace(/\-? ?You can log in to auto-fill your contact information - or proceed with the registration without logging in./g, 'Je kan inloggen of gewoon jouw naam en familienaam invullen zonder inloggen.');
Never mind, I found the script in another post.
<script type="text/javascript">
//To change the "login or fill name" label on the event details page
var myPage = document.getElementById('idGeneralFormContainer');
if (myPage){
myPage.innerHTML = myPage.innerHTML.replace(/\-? ?You can log in to auto-fill your contact information - or proceed with the registration without logging in./g, 'Je kan inloggen of gewoon jouw naam en familienaam invullen zonder inloggen.');
}
</script>