diff options
Diffstat (limited to 'bin/ui')
| -rwxr-xr-x | bin/ui | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -453,8 +453,20 @@ class UI html = with_layout(binding) do <<~ERB - <a href="/index.html">Home</a> - <a href="/groups.html">Groups</a> + <nav> + <ul> + <li><strong>UI</strong></li> + </ul> + <ul> + <li><a href="/index.html">Home</a></li> + <li><a href="/groups.html">Groups</a></li> + <li> + <form action="/logout" method="post"> + <input type="submit" value="Logout" /> + </form> + </li> + </ul> + </nav> <h2>Received SAML Response</h2> <textarea readonly="readonly" disabled="disabled" cols=220 rows=40><%=- saml_response.to_xml(pretty: true) -%></textarea> |
