2015-05-21 13:44:19 -06:00
|
|
|
<apex:page standardController="Contact">
|
2015-06-25 06:06:05 -06:00
|
|
|
|
2016-01-12 11:27:30 -07:00
|
|
|
<apex:sectionHeader title="{!contact.firstname}" subtitle="{!contact.account.name}"/>
|
2015-06-25 06:06:05 -06:00
|
|
|
|
|
|
|
<apex:form >
|
2015-06-10 10:11:20 -06:00
|
|
|
<apex:pageBlock title="Contact">
|
|
|
|
<apex:pageBlockSection title="Editing">
|
2015-08-10 07:57:53 -06:00
|
|
|
<apex:inputfield value="{!contact.firstname}"/>
|
|
|
|
<apex:inputfield value="{!contact.lastname}"/>
|
|
|
|
<apex:inputfield value="{!contact.salutation}"/>
|
|
|
|
<apex:inputfield value="{!contact.birthdate}"/>
|
2016-01-12 11:27:30 -07:00
|
|
|
<apex:commandButton value="Save" action="{!save}"/>
|
2015-06-10 10:11:20 -06:00
|
|
|
</apex:pageBlockSection>
|
|
|
|
</apex:pageBlock>
|
2015-05-21 13:44:19 -06:00
|
|
|
</apex:form>
|
2015-06-25 06:06:05 -06:00
|
|
|
|
2015-05-21 13:44:19 -06:00
|
|
|
</apex:page>
|