Multi language in login - Moodle 3.5

0

Dear colleagues I am editing a multi-language theme of moodle which for the moment I need to make some changes in the instructions of the registration page. I have examined and in the file login_form.mustache I find this code in H2 you see firstname I have the php files of each language and the constant is not registered in either of the two

{{#cansignup}}
<div class="custom-signuppanel">
    <div class="card">
        <div class="card-block">
            <div class="card-title">
                <h2>{{#str}}firsttime{{/str}}</h2>
            </div>
            <div>
            {{{instructions}}}
            {{#cansignup}}
                <form class="m-t-1" action="{{signupurl}}" method="get" id="signup">
                    <button type="submit" class="btn btn-secondary">{{#str}}startsignup{{/str}}</button>
                </form>
            {{/cansignup}}
            </div>
        </div>
    </div>
</div>
{{/cansignup}}

    
asked by Nathaniel Humberto Baldizon 22.09.2018 в 01:25
source

0 answers