refresh tag after email confirmation possible?

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
Post Reply
cyrano
Posts: 1598
Joined: Sat 31. Jan 2004, 18:33
Location: Stuttgart
Contact:

refresh tag after email confirmation possible?

Post by cyrano »

Hi there, is it possible to set a refresh tag in wcms?

I would like to set a refresh tag after a user send a form and was linked to the email_succes page. so after 5 sec i would like to bring the user back to e.g. the index.php page.

possible?

thank you for advice.
Gruß/ regards cyrano
--------------------------------------------------------
templates -> http://www.128.weitzelmedia.de
planepix -> http://www.planepix.de
XING -> https://www.xing.com/profile/Thomas_Weitzel3
bertalizer
Posts: 47
Joined: Sat 21. Feb 2004, 14:24
Location: Belgium

Post by bertalizer »

Past the following code in a html-content part in the email_succes page:

Code: Select all

<script language="javascript">
function gohome() {
	document.location.href="index.php";
}
setTimeout("gohome()",5000);
</script>
B.
Last edited by bertalizer on Fri 7. May 2004, 14:21, edited 1 time in total.
cyrano
Posts: 1598
Joined: Sat 31. Jan 2004, 18:33
Location: Stuttgart
Contact:

Post by cyrano »

cool great thank you bertalizer :D
Gruß/ regards cyrano
--------------------------------------------------------
templates -> http://www.128.weitzelmedia.de
planepix -> http://www.planepix.de
XING -> https://www.xing.com/profile/Thomas_Weitzel3
Post Reply