Created
September 8, 2013 20:57
-
-
Save msrivastav13/6488346 to your computer and use it in GitHub Desktop.
This file contains 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 controller="winter14Ctrl" docType="html-5.0"> | |
<apex:form > | |
<apex:pageBlock title="Winter 14 Visualforce Explore" > | |
<apex:pageBlockSection > | |
<apex:pageBlockSection > | |
<apex:outputLabel ></apex:outputLabel> | |
<apex:inputText label="Account" value="{!AccountName}" list="{!Accounts}" | |
html-inputText="Enter your preferred browser" html-autocomplete="on" /> | |
</apex:pageBlockSection> | |
<apex:pageBlockSection > | |
<apex:outputLabel ></apex:outputLabel> | |
<apex:input label="Increment Me!!" value="{! hello }" type="auto" | |
html-min="0" html-max="100" html-step="5"/> | |
</apex:pageBlockSection> | |
<apex:pageBlockSection > | |
<apex:outputLabel ></apex:outputLabel> | |
<apex:input label="datePicker" value="{! fDate }" type="auto"/> | |
</apex:pageBlockSection> | |
<apex:pageBlockSection > | |
<apex:outputLabel ></apex:outputLabel> | |
<apex:input label="Email" value="{!email }" type="email" | |
html-placeholder="[email protected]" | |
html-pattern="^[a-zA-Z0-9._-][email protected]$"/> | |
</apex:pageBlockSection> | |
<apex:pageBlockSection > | |
<apex:outputLabel ></apex:outputLabel> | |
<apex:input label="Phone" value="{!phone }" type="tel" | |
html-placeholder="999-999-9999" | |
html-autofocus="true"/> | |
</apex:pageBlockSection> | |
</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