Created
September 12, 2019 18:12
-
-
Save DataSolveProblems/ee0ef5a3173fcdee9694b2f0ecc4ce67 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="Contact"> | |
<apex:form> | |
<apex:pageBlock title="Add contacts"> | |
<apex:pageBlockSection columns="1"> | |
<apex:inputField value="{! Contact.FirstName}"/> | |
<apex:inputField value="{! Contact.LastName}"/> | |
<apex:inputField value="{! Contact.email}"/> | |
</apex:pageBlockSection> | |
<apex:pageBlockButtons> | |
<apex:commandButton action="{! save}" value="Save"/> | |
</apex:pageBlockButtons> | |
</apex:pageBlock> | |
</apex:form> | |
</apex:page> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment