Last active
July 16, 2016 20:34
-
-
Save cdcarter/e318fa62a5057cd61e731f75838cf748 to your computer and use it in GitHub Desktop.
Client Stories
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<apex:page standardController="Contact" showHeader="false" sidebar="false" applyHtmlTag="false" standardStylesheets="false" docType="html-5.0"> | |
<html> | |
<head> | |
<meta charset="utf-8"/> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"/> | |
<title>Wayfinder Story Submission</title> | |
</head> | |
<body> | |
<div class="container"> | |
<h1> | |
{!Contact.Name}: New Submission | |
</h1> | |
<div class="row"> | |
<flow:interview name="Create_Or_Edit_Story" allowShowPause="false" buttonLocation="bottom" finishLocation="{!URLFOR($Page.ClientStoryHomePage,null,[id=Contact.Id])}"> | |
<apex:param name="inputContactId" value="{!Contact.Id}"/> | |
</flow:interview> | |
</div> | |
</div> | |
</body> | |
</html> | |
</apex:page> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment