1<!-- Page: -->
2<apex:page standardController="Account">
3 <apex:form >
4 <apex:pageBlock title="My Content" mode="edit">
5 <apex:pageBlockSection title="My Content Section" columns="2">
6 <apex:pageBlockSectionItem >
7 <apex:outputPanel>
8 <apex:outputText>*</apex:outputText>
9 <apex:outputLabel value="Account Name" for="account__name"/>
10 </apex:outputPanel>
11 <apex:inputText value="{!account.name}" id="account__name"/>
12 </apex:pageBlockSectionItem>
13 </apex:pageBlockSection>
14 </apex:pageBlock>
15 </apex:form>
16</apex:page>