Click here to Skip to main content
15,885,767 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Hii ,

I am using outh providers which is default template provided by asp.net

which give me below structure after generating on webpage

XML
<section id="socialLoginForm">
        <h2>Use another service to log in.</h2>

<fieldset class="open-auth-providers">
    <legend>Log in using another service</legend>





            <button title="Log in using your Twitter account." value="twitter" name="provider" type="submit">
                Twitter
            </button>

            <button title="Log in using your Facebook account." value="facebook" name="provider" type="submit">
                Facebook
            </button>

            <button title="Log in using your Microsoft account." value="windowslive" name="provider" type="submit">
                Microsoft
            </button>

            <button title="Log in using your Google account." value="google" name="provider" type="submit">
                Google
            </button>

</fieldset>

    </section>


I want to convert this structure into some custom format . want to chnage look and feel

XML
<div class="login_inner1">
                        <h3>Sign in with</h3>
                        <div class="login_wrapper">
                            <div class="social_link">
                                <img src="../images/facebook_login.png" alt="Facebook" />
                            </div>
                            <div class="social_link">
                                <img src="../images/twitter_login.png" alt="Twitter" />
                            </div>
                            <div class="clear"></div>
                            <div class="social_link">
                                <img src="../images/gplus_login.png" alt="GPlus" />
                            </div>
                            <div class="social_link">
                                <img src="../images/linkedin_login.png" alt="Linkedin" />
                            </div>
                        </div>
                    </div>



Please suggest on this
Posted
Comments
Sergey Alexandrovich Kryukov 22-Oct-14 16:27pm    
Did you think about using XSLT?
Why your tag is jQuery? Do you really want to do it all on the client side? why? do you use any server-side technology?
What is "outh"? Maybe you meant to say OAuth?
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900