File: index.twig

package info (click to toggle)
simplesamlphp 1.19.7-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 42,920 kB
  • sloc: php: 202,044; javascript: 14,867; xml: 2,700; sh: 225; perl: 82; makefile: 70; python: 5
file content (33 lines) | stat: -rw-r--r-- 1,465 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{% extends "base.twig" %}
{% block content %}
    <div id="portalmenu" class="ui-tabs ui-widget ui-widget-content ui-corner-all">
        <ul class="tabset_tabs ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all">
            <li class="ui-state-default ui-corner-top ui-tabs-selected ui-state-active"><a href="#">Configuration</a></li>
            <li class="ui-state-default ui-corner-top"><a href="/{{ baseurlpath }}module.php/core/frontpage_auth.php">Authentication</a></li>
            <li class="ui-state-default ui-corner-top"><a href="/{{ baseurlpath }}module.php/core/frontpage_federation.php">Federation</a></li>
        </ul>
        <a class='float-r' href='{{ logouturl }}'>{{ '{core:frontpage:logout}'|trans }}</a>
        <div id="portalcontent" class="ui-tabs-panel ui-widget-content ui-corner-bottom">

        <div style="clear: both" class="enablebox mini">
            <table>

                <tr class="disabled"><td>SAML 2.0 IdP</td>
                    <td><i class="fa fa-ban"></i></td></tr>

                <tr class="disabled"><td>Shib 1.3 IdP</td>
                    <td><i class="fa fa-ban"></i></td></tr>

            </table>
        </div>
        <h2>Configuration</h2>
        <ul>
            {% for url, page in adminpages %}
            <li>
                <a href="{{ url }}">{{ page }}</a>
            </li>
            {% endfor %}
        </ul>
        </div>
    </div>
{% endblock content %}