function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Rasmita Sahoo 11Rasmita Sahoo 11 

salesforce page using visulaforce

Create  Salesforce Login Page (only UI) using Visual Force.
AnkaiahAnkaiah (Salesforce Developers) 
Hi Rasmita,

Refer the below help article will help you to proceed further.
https://help.salesforce.com/s/articleView?id=sf.external_identity_custom_login_page_login.htm&type=5

Thanks!!
Rasmita Sahoo 11Rasmita Sahoo 11
Soory Ankaiah. not able to do .. I already made but the mater is the form and the iframe not in a same lable. Here is the code.

<apex:page >
     <p align="right"><apex:iframe src="https://c.salesforce.com/login-messages/promos.html" width="50%" height="700px" scrolling="false" /></p>
    <apex:image value="{!$Resource.SalesforceLogo}" style="margin-left: 255px;"/><br/>
    
      <apex:form style="border : 1px solid;width:400px;margin-left: 150px;">
         <apex:pageBlock >
            <apex:pageBlockSection columns="1">
                Username 
                <apex:inputText Style="font-family: SFS, Arial, sans-serif;font color:#54698D;border: 1px solid;width: 90%;height: 45px;font-size: 0.8125rem;padding:1.25rm;border-radius: 0.25rem;"/>
                Password
                <apex:inputSecret Style="font-family: SFS, Arial, sans-serif;font color:#54698D;border: 1px solid;width: 90%;height: 45px;font-size: 0.8125rem;border-radius: 0.25rem;"/>
                <apex:commandButton value="Log In" action="{!save}" style="height: 45px; width: 90%;background : rgba(0,95,178);border-radius: 0.25rem;font-size: 0.8125rem;boarder-color:rgba(0, 95, 178);color:white;"/>
              <apex:selectCheckboxes >
                  <apex:selectOption itemLabel="Remember me" itemValue="Rm"/>
              </apex:selectCheckboxes>
                <div>
                 <a  href="https://login.salesforce.com/secur/forgotpassword.jsp?locale=us" style="font-size : .75rem;color:#0070D2;align:left" >
                    Forgot Your Password?
                 </a>
                 <a href="https://login.salesforce.com/" style="font-size : .75rem;color:#0070D2;margin-left: 50px; ">
                    Use Custom Domain
                 </a>
                </div>
                
            </apex:pageBlockSection>
             
         </apex:pageBlock>
          
    </apex:form>
       <div>
             <p style="margin-left: 220px;font-size: .8125rem;">
                   Not a Customer?
              <a  href="https://www.salesforce.com/form/signup/elf-v2-login/?d=70130000000Enus" style = "
                                                         font-size: .8125rem;border-radius: 4px;font-family: SFS, Arial, sans-serif;border: 1px solid #D8DDE6;margin-left: 30px;">
                    Try for Free
                    </a>
                         </p>
                </div>
    
   
    
     </apex:page>