XF 2.0 Changing log in style

mn0392

Member
Hello, I am really struggling to change the log in style on my website, please see image: How can I make it look like this?
it's been bugging me for days i really need someone to help me change this. Thank you so much!

help.webp
 
Template: login

Find and remove:
Code:
        <xf:if is="$xf.options.registrationSetup.enabled">
            <div class="block-outer block-outer--after">
                <div class="block-outer-middle">
                    {{ phrase('dont_have_account_question') }} <xf:button href="{{ link('register') }}">{{ phrase('register_now') }}</xf:button>
                </div>
            </div>
        </xf:if>

Find:

Code:
<xf:submitrow icon="login" />

Replace with:

Code:
            <xf:submitrow icon="login">
                <xf:html>
                    <xf:button href="{{ link('register') }}">{{ phrase('register_now') }}</xf:button>
                </xf:html>
            </xf:submitrow>

I haven't really tested it thoroughly but it seems to be working.
 
Template: login

Find and remove:
Code:
        <xf:if is="$xf.options.registrationSetup.enabled">
            <div class="block-outer block-outer--after">
                <div class="block-outer-middle">
                    {{ phrase('dont_have_account_question') }} <xf:button href="{{ link('register') }}">{{ phrase('register_now') }}</xf:button>
                </div>
            </div>
        </xf:if>

Find:

Code:
<xf:submitrow icon="login" />

Replace with:

Code:
            <xf:submitrow icon="login">
                <xf:html>
                    <xf:button href="{{ link('register') }}">{{ phrase('register_now') }}</xf:button>
                </xf:html>
            </xf:submitrow>

I haven't really tested it thoroughly but it seems to be working.



THANK YOU SO MUCH!
You have really done exactly what I wanted and so well too. thank you so much god bless! :)

not that you care probably but i did it on my site: fngcommunity.com and it looks amazing now!
 
Top Bottom