Skip to content

Instantly share code, notes, and snippets.

@cdcarter
Last active July 16, 2016 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cdcarter/e318fa62a5057cd61e731f75838cf748 to your computer and use it in GitHub Desktop.
Save cdcarter/e318fa62a5057cd61e731f75838cf748 to your computer and use it in GitHub Desktop.
Client Stories
<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