src/cm/templates/site/login.html
author Yves-Marie Haussonne <ymh.work+github@gmail.com>
Fri, 09 May 2014 18:35:26 +0200
changeset 656 a84519031134
parent 551 723261fb23fb
permissions -rw-r--r--
add link to "privacy policy" in the header test
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     1
{% extends "site/layout/base_workspace.html" %}
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     2
{% load i18n %}
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     3
{% load com %}
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     4
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     5
{% block head %}
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     6
{% endblock %}
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     7
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     8
{% block title %}{% blocktrans %}Login{% endblocktrans %}{% endblock %}
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
     9
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
    10
{% block content %}
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
    11
550
05b5e51e8823 Put logo really everywhere.
gibus
parents: 0
diff changeset
    12
<h1 class="main_title">
05b5e51e8823 Put logo really everywhere.
gibus
parents: 0
diff changeset
    13
{% if CONF.f_get_logo_url %}
05b5e51e8823 Put logo really everywhere.
gibus
parents: 0
diff changeset
    14
<div><a title="{% blocktrans %}back to workspace{% endblocktrans %}" alt="logo" class="title" href="{% url index %}"><img src="{{ CONF.f_get_logo_url }}" /></a></div>
551
723261fb23fb Put also workspace name in any case.
gibus
parents: 550
diff changeset
    15
{% endif %}
550
05b5e51e8823 Put logo really everywhere.
gibus
parents: 0
diff changeset
    16
05b5e51e8823 Put logo really everywhere.
gibus
parents: 0
diff changeset
    17
{% if CONF.workspace_name %}
05b5e51e8823 Put logo really everywhere.
gibus
parents: 0
diff changeset
    18
<a title="{% blocktrans %}back to workspace{% endblocktrans %}" class="title" href="{% url index %}">{{ CONF.workspace_name }}</a>
05b5e51e8823 Put logo really everywhere.
gibus
parents: 0
diff changeset
    19
{% endif %}
05b5e51e8823 Put logo really everywhere.
gibus
parents: 0
diff changeset
    20
</h1>
0
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
    21
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
    22
{% include "site/login_form.html" %}
40c8f766c9b8 import from internal svn r 4007
raph
parents:
diff changeset
    23
550
05b5e51e8823 Put logo really everywhere.
gibus
parents: 0
diff changeset
    24
{% endblock %}