Difference between revisions of "Template Page - Confirmation Template"

From SmartWiki
Jump to: navigation, search
(Created page with '<pre style="white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;"> <html> <head> @STYLELINK@ </head…')
 
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<pre style="white-space: pre-wrap;
+
The Confirmation Template will be displayed after the [[Template Page]] is submitted by the end user.
white-space: -moz-pre-wrap;
 
white-space: -pre-wrap;
 
white-space: -o-pre-wrap;
 
word-wrap: break-word;">
 
<html>
 
<head>
 
@STYLELINK@
 
</head>
 
<body leftmargin=1 rightmargin=1 topmargin=1 bottommargin=1 marginheight=1 marginwidth=1>
 
  
<center><h2>Thank you...</h2></center></body>
+
==Examples==
</html>
+
The following is an example of a simple confirmation page.
</pre>
 
  
 +
<pre style="white-space: -o-pre-wrap; word-wrap: break-word;">@STYLELINK@</pre><center>
 +
==Thank you...==
 +
</center>
  
<pre style="white-space: pre-wrap;
+
After submission, the text "Thank you..." will be displayed to the end user. The end user can be provided here with next steps after the submission process.
white-space: -moz-pre-wrap;
 
white-space: -pre-wrap;
 
white-space: -o-pre-wrap;
 
word-wrap: break-word;">
 
<html>
 
<head>
 
@STYLELINK@
 
</head>
 
<body leftmargin=1 rightmargin=1 topmargin=1 bottommargin=1 marginheight=1 marginwidth=1>
 
  
 +
The following is an example of a confirmation template that uses [[sslogic|conditional logic]] to determine to which page the user should be redirected after submission:
 +
 +
<pre style="white-space: -o-pre-wrap; word-wrap: break-word;">@STYLELINK@
 
<!--@sslogic("@Q1@"="Yes" and "@Q2@"="Yes" and "@Q3@"="Yes" and "@Q4@"="Yes")-->
 
<!--@sslogic("@Q1@"="Yes" and "@Q2@"="Yes" and "@Q3@"="Yes" and "@Q4@"="Yes")-->
<script>
+
<script>// <![CDATA[
 
location.href="/ex/ex_Apppage.jsp?token=HwwISRgGZ15RSxde&appid=102587&oppid=@opportunityid@";
 
location.href="/ex/ex_Apppage.jsp?token=HwwISRgGZ15RSxde&appid=102587&oppid=@opportunityid@";
</script>
+
// ]]></script>
 
<!--@else-->
 
<!--@else-->
<script>
+
<script>// <![CDATA[
 
 
 
       location.href ="/simpleface/sm_home.jsp";
 
       location.href ="/simpleface/sm_home.jsp";
 +
// ]]></script>
 +
end</pre>
  
</script>
+
In the above example, if the answer to all four fields named ''Q1'', ''Q2'', ''Q3'' and ''Q4'' are answered "Yes," the user will be redirected to another [[Template Page]] after submission. If the answer is anything other than four "yes"es, the user will be redirected to their home page.
</body>                                               
 
 
 
<!--@end-->
 
  
</html>
+
==See Also==
</pre>
+
* [[Template Page]]
 +
* [[Template Page Variables]]

Latest revision as of 16:16, 4 June 2019

The Confirmation Template will be displayed after the Template Page is submitted by the end user.

Examples

The following is an example of a simple confirmation page.

@STYLELINK@

Thank you...

After submission, the text "Thank you..." will be displayed to the end user. The end user can be provided here with next steps after the submission process.

The following is an example of a confirmation template that uses conditional logic to determine to which page the user should be redirected after submission:

@STYLELINK@
<!--@sslogic("@Q1@"="Yes" and "@Q2@"="Yes" and "@Q3@"="Yes" and "@Q4@"="Yes")-->
<script>// <![CDATA[
location.href="/ex/ex_Apppage.jsp?token=HwwISRgGZ15RSxde&appid=102587&oppid=@opportunityid@";
// ]]></script>
<!--@else-->
<script>// <![CDATA[
       location.href ="/simpleface/sm_home.jsp";
// ]]></script>
end

In the above example, if the answer to all four fields named Q1, Q2, Q3 and Q4 are answered "Yes," the user will be redirected to another Template Page after submission. If the answer is anything other than four "yes"es, the user will be redirected to their home page.

See Also