17 lines
594 B
Plaintext
17 lines
594 B
Plaintext
<apex:page standardController="Contact">
|
|
|
|
<apex:sectionHeader subtitle="{!contact.account.name}" title="{!contact.firstname}"/>
|
|
|
|
<apex:form >
|
|
<apex:pageBlock title="Contact">
|
|
<apex:pageBlockSection title="Editing">
|
|
<apex:inputfield value="{!contact.firstname}"/>
|
|
<apex:inputfield value="{!contact.lastname}"/>
|
|
<apex:inputfield value="{!contact.salutation}"/>
|
|
<apex:inputfield value="{!contact.birthdate}"/>
|
|
<apex:commandButton action="{!save}" value="Save"/>
|
|
</apex:pageBlockSection>
|
|
</apex:pageBlock>
|
|
</apex:form>
|
|
|
|
</apex:page> |