• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

About navigating getLink('account/password') problem

henkas

Well-Known Member
Joined
Jul 8, 2015
Messages
993
Solutions
5
Reaction score
55
Hi
so i'm confused why change password navigation is messed up with email change navigation so basically you can press on change password it will send you to change email function, ideas why?

HTML:
        <form action="{{ getLink('account/email') }}" method="post">
        {% set button_name = 'Change Email' %}
        <input class="ButtonText" type="image" name="Change Email" alt="Change Email" src="templates/loleslav/images/buttons/_sbutton_changeemail.gif">
       
        <form action="{{ getLink('account/password') }}" method="post">
        {% set button_name = 'Change Password' %}
        <input class="ButtonText" type="image" name="Change Password" alt="Change Password" src="templates/loleslav/images/buttons/_sbutton_changepassword.gif">
 
You need close forms tag. If you don't close it the fowards buttons will always return the first form link.
 
Solution
Back
Top