Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save vspruyt-sol/0881f14da24fdd425ed07c1ecddf9259 to your computer and use it in GitHub Desktop.
Save vspruyt-sol/0881f14da24fdd425ed07c1ecddf9259 to your computer and use it in GitHub Desktop.
<apex:page standardController="Case" lightningStylesheets="true" extensions="CaseTRAddendumExtension" showHeader="false" applyHtmlTag="true" applyBodyTag="false">
<head>
<apex:slds/>
</head>
<body class="slds-scope">
<apex:form>
<apex:pageBlock>
<apex:sectionHeader title="{!$Label.Create_Addendum_for_Case} {!Case.CaseNumber}" subtitle="{!$Label.Are_you_sure_you_want_to_create_an_addendum}?"
/>
<apex:pageMessages id="msgId" />
<apex:pageBlockButtons location="bottom">
<apex:commandButton action="{!save}" value="{!$Label.Confirm}" styleClass="slds-button slds-button--brand slds-vf-button_brand" />
<apex:commandButton action="{!cancel}" value="{!$Label.Cancel}" />
</apex:pageBlockButtons>
</apex:pageBlock>
</apex:form>
</body>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment