Skip to content

Instantly share code, notes, and snippets.

@atulgupta31
Created November 4, 2015 09:02
Show Gist options
  • Save atulgupta31/30696f7e3fae1c6cd372 to your computer and use it in GitHub Desktop.
Save atulgupta31/30696f7e3fae1c6cd372 to your computer and use it in GitHub Desktop.
<!-- Page: -->
<apex:page standardController="Account" id="pg">
<apex:form id="frm">
<apex:pageBlock title="My Content" mode="edit" >
<apex:pageBlockButtons >
<apex:commandButton value="Save" />
</apex:pageBlockButtons>
<apex:pageBlockSection title="My Content Section" columns="2">
<apex:inputField value="{!account.name}"/>
<apex:inputField value="{!account.site}"/>
<apex:inputField value="{!account.type}"/>
<apex:inputField value="{!account.accountNumber}"/>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment