diff options
author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2016-03-09 09:14:38 +0100 |
---|---|---|
committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2016-03-09 09:14:38 +0100 |
commit | f66ed1831a4877d6c7cb3c55bbc3fd84024a1523 (patch) | |
tree | 0df50de55d7b8a82551742673c9c7e3378b3f042 /id/server/auth/src/main/webapp/index.html | |
parent | 6e57e33b0d06dd59124cd61dc2f78e3545642074 (diff) | |
download | moa-id-spss-f66ed1831a4877d6c7cb3c55bbc3fd84024a1523.tar.gz moa-id-spss-f66ed1831a4877d6c7cb3c55bbc3fd84024a1523.tar.bz2 moa-id-spss-f66ed1831a4877d6c7cb3c55bbc3fd84024a1523.zip |
move main frontend GUI to seperate package
Diffstat (limited to 'id/server/auth/src/main/webapp/index.html')
-rw-r--r-- | id/server/auth/src/main/webapp/index.html | 92 |
1 files changed, 0 insertions, 92 deletions
diff --git a/id/server/auth/src/main/webapp/index.html b/id/server/auth/src/main/webapp/index.html deleted file mode 100644 index d2e7d1e1b..000000000 --- a/id/server/auth/src/main/webapp/index.html +++ /dev/null @@ -1,92 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<html> - <head> - <meta http-equiv="content-type" content="text/html; charset=utf8" > - <title>MOA-ID 3.1.x</title> - <link rel="stylesheet" href="./common/main.css" type="text/css"> - <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> - <link href='https://fonts.googleapis.com/css?family=Roboto:300,400' rel='stylesheet' type='text/css'> - <script language="JavaScript" type="text/javascript"> - - function PVP2LoginIframe(url) { - var el = document.getElementById("demologin"); - var iframe = document.createElement("iframe"); - iframe.setAttribute("src", url); - iframe.setAttribute("width", "240"); - iframe.setAttribute("height", "180"); - iframe.setAttribute("frameborder", "0"); - iframe.setAttribute("scrolling", "no"); - iframe.setAttribute("title", "Login"); - //iframe.setAttribute("scrolling", "yes"); - - iframe.setAttribute("name", "iframelogin"); - iframe.setAttribute("id", "iframelogin"); - - - iframe.setAttribute("onload","iframeLoaded()"); - - var divdemologin = document.getElementById("demologin"); - divdemologin.innerHTML=""; - - el.appendChild(iframe, el); - } - - function iframeLoaded(){ - //console.log(document.title); - var ifr=document.getElementById("iframelogin"); - - //only works on same origin - - /* - var iframedoc=(ifr.contentWindow||ifr.contentDocument); - - //var iframedoc=ifr.contentDocument||iframe.contentWindow.document; - console.log(iframedoc.title); - if(iframedoc.title=="Demo Applikation"){ - ifr.setAttribute("width",480); - ifr.setAttribute("height",240); - - var demologin=document.getElementById("demologin"); - demologin.style.marginRight="250px"; - } - */ - } - - </script> - </head> - <body> - <div id="headline"> - <div class="container"> - <a href="http://www.digitales.oesterreich.gv.at/"><img src="./common/logo_digAT.png"/></a> - <a href="../index.html"><h1>MOA-ID-AUTH </h1></a> - <br/> - </div> - </div> - <div id="description" class="container"> - <p>Bei MOA-ID-AUTH handelt es sich um ein Modul für die Identifizierung und Authentifizierung bei Onlineapplikationen unter Verwendung der Bürgerkarte. - Hier kann sowohl die Smartcard-Variante (e-Card) als auch die Handysignatur verwendet werden. - Die Konfiguration des Modules MOA-ID-Auth erfolgt mit Hilfe des Zusatzmodules MOA-ID-Configuration welches eine web-basierte Konfigurationsschnittstelle zur Verfügung stellt.</p> - </div> - <div id="maincontent" class="container"> - <nav> - <ul> - <!--li><a href="_index.html">Allgemein</a></li--> - <!--li><a href="http://joinup.ec.europa.eu/site/moa-idspss/">Dokumentation</a></li--> - <li><a href="http://joinup.ec.europa.eu/site/moa-idspss/moa-id-3.x/doc/handbook">Dokumentation</a></li> - <!--Link zu den Demo-Clients--> - <li><a href=#>Demo Clients</a></li> - <!--Link zum Konfigtool--> - <li><a href="https://localhost:8443/moa-id-configuration">Konfiguration GUI</a></li> - <li><a href="./TransferSSOSession">Transfer Single Sign-On Session to Smartphone App</a></li> - - </ul> - </nav> - <div id="demologin" class="container"> - <br/> - <a href="#" id="loginButton" class="button" onClick="PVP2LoginIframe('https://menja.iaik.tugraz.at:8443/moa-id-oa/servlet/pvp2login')">Login</a> - <p id="loginText">Über den Login-Button können Sie sich anschließend bei Ihrer Online-Applikation mit der Bürgerkarte oder der Handysignatur anmelden. Dazu müssen Sie allerdings zuvor die Applikation gemäß <a href="http://joinup.ec.europa.eu/site/moa-idspss/moa-id-3.x/doc/handbook/application/application.html#DemoApp_pvp21">Beschreibung</a> konfigurieren.</p> - </div> - </div> - - </body> -</html>
\ No newline at end of file |