File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ {% set pagetitle = ' {casserver:casserver:loggedin_header}' | trans %}
2+ {% extends " base.twig" %}
3+
4+ {% block content %}
5+ <h2 >{{ pagetitle }}</h2 >
6+
7+ <p >{{ ' {casserver:casserver:loggedin_description}' | trans }}</p >
8+ {% endblock %}
9+
10+ {% block postload %}
11+ {% if autofocus %}
12+ <script type =" text/javascript" >window .onload = function () {document .getElementById (' {{ autofocus }}' ).focus ();}</script >
13+ {% endif %}
14+ {% endblock %}
Original file line number Diff line number Diff line change 1+ {% set pagetitle = ' {casserver:casserver:loggedout_header}' | trans %}
2+ {% extends " base.twig" %}
3+
4+ {% block content %}
5+ <h2 >{{ pagetitle }}</h2 >
6+
7+ <p >{{ ' {casserver:casserver:loggedout_description}' | trans }}</p >
8+ {% if url is defined %}
9+ <a href =" {{ url }}" >{{ ' {casserver:casserver:continue_heading}' | trans }}</a >
10+ {% endif %}
11+ {% endblock %}
12+
13+ {% block postload %}
14+ {% if autofocus %}
15+ <script type =" text/javascript" >window .onload = function () {document .getElementById (' {{ autofocus }}' ).focus ();}</script >
16+ {% endif %}
17+ {% endblock %}
You can’t perform that action at this time.
0 commit comments