Created
July 30, 2020 13:39
-
-
Save vspruyt-sol/0881f14da24fdd425ed07c1ecddf9259 to your computer and use it in GitHub Desktop.
This file contains hidden or 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="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