Projet

Général

Profil

0001-update-association-page-14587.patch

Serghei Mihai (congés, retour 15/05), 06 février 2017 14:24

Télécharger (1,47 ko)

Voir les différences:

Subject: [PATCH] update association page (#14587)

 mandayejs/mandaye/templates/mandaye/associate.html | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)
mandayejs/mandaye/templates/mandaye/associate.html
7 7
        <title>{% trans 'Associate your account' %}</title>
8 8
    </head>
9 9
    <body>
10
        <div id="main-div">
10
        <div id="mandaye-associate">
11 11
            <h1>{% trans 'Associate your account' %}</h1>
12
            <div id='div-logo'><img id='logo' src="{% static 'images/associate.png' alt='associate.png' %}" /></div>
13 12
            {% if messages %}
14 13
            <ul class="messages">
15 14
                {%for message in messages%}
......
17 16
                {%endfor%}
18 17
            </ul>
19 18
            {%endif%}
20
            <form id='associate' method="post">
19
            <form method="post">
21 20
                {% csrf_token %}
22 21
                {{ form.as_p }}
23
                <p><input id="submit" type="submit" value="{% trans 'Submit' %}" /></p>
22
                <p><input type="submit" value="{% trans 'Submit' %}" /></p>
24 23
            </form>
25 24
        </div>
26 25
    </body>
27
-