diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2020-04-06 11:03:14 +0200 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2020-04-06 11:03:14 +0200 |
commit | 155a6436f134cfc3b0ed16fdd7b94a8465d8014e (patch) | |
tree | 542dfd75ffc71384e466b806c86ce8dcbc109775 /id/server/data/deploy/conf/moa-id/htmlTemplates/sendAssertionFormFull.html | |
parent | 4ed0377a95b6b9be1927dc3ef92eb0733a72ae6e (diff) | |
parent | d112c394b4c84e97dd55f1bd10ed73148f985bc1 (diff) | |
download | moa-id-spss-155a6436f134cfc3b0ed16fdd7b94a8465d8014e.tar.gz moa-id-spss-155a6436f134cfc3b0ed16fdd7b94a8465d8014e.tar.bz2 moa-id-spss-155a6436f134cfc3b0ed16fdd7b94a8465d8014e.zip |
Merge branch 'current_development' of gitlab.iaik.tugraz.at:egiz/moa-idspss into current_development
Add missing templates
Diffstat (limited to 'id/server/data/deploy/conf/moa-id/htmlTemplates/sendAssertionFormFull.html')
-rw-r--r-- | id/server/data/deploy/conf/moa-id/htmlTemplates/sendAssertionFormFull.html | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/id/server/data/deploy/conf/moa-id/htmlTemplates/sendAssertionFormFull.html b/id/server/data/deploy/conf/moa-id/htmlTemplates/sendAssertionFormFull.html new file mode 100644 index 000000000..7ae4b3f92 --- /dev/null +++ b/id/server/data/deploy/conf/moa-id/htmlTemplates/sendAssertionFormFull.html @@ -0,0 +1,52 @@ +<!DOCTYPE html> +<html> +<head> + <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> + <!-- MOA-ID 2.x BKUSelection Layout CSS --> + <link rel="stylesheet" href="$contextPath/css/buildCSS?pendingid=$pendingReqID" /> + + <title>Anmeldung an Online-Applikation</title> +</head> + + +<body> + <div id="page"> + + <div id="page1" class="case selected-case" role="main"> + +<!-- <h2 class="OA_header">Anmeldung an: #OAName#</h2> --> + + <div id="main"> + <div id="leftcontent" class="hell"> + <div id="bku_header" class="dunkel"> + <h2 id="tabheader" class="dunkel" role="heading"> + Anmeldeinformationen: + </h2> + </div> + + <div id="selectArea" class="hell" role="application"> + <h3>Anmeldung an: $OAName</h3> + +<!-- <div class="hell"> --> + <div id="leftbutton"> + <form method="post" id="moaidform_yes" action="$contextPath$submitEndpoint"> + <input type="hidden" name="value" value="true"> + <input type="hidden" name="pendingid" value="$pendingReqID"> + <input type="submit" value="Ja" class="setAssertionButton_full" role="button"> + </form> + </div> + <div id="rightbutton"> + <form method="post" id="moaidform_no" action="$contextPath$submitEndpoint"> + <input type="hidden" name="value" value="false"> + <input type="hidden" name="pendingid" value="$pendingReqID"> + <input type="submit" value="Nein" class="setAssertionButton_full" role="button"> + </form> + </div> + + </div> + </div> + </div> + </div> + </div> +</body> +</html> |