diff options
Diffstat (limited to 'id.server/data/deploy/conf/moa-spss/profiles/MOAIDTransformAuthBlock.xml')
-rw-r--r-- | id.server/data/deploy/conf/moa-spss/profiles/MOAIDTransformAuthBlock.xml | 57 |
1 files changed, 33 insertions, 24 deletions
diff --git a/id.server/data/deploy/conf/moa-spss/profiles/MOAIDTransformAuthBlock.xml b/id.server/data/deploy/conf/moa-spss/profiles/MOAIDTransformAuthBlock.xml index ee1e04bf2..3cc64a270 100644 --- a/id.server/data/deploy/conf/moa-spss/profiles/MOAIDTransformAuthBlock.xml +++ b/id.server/data/deploy/conf/moa-spss/profiles/MOAIDTransformAuthBlock.xml @@ -6,38 +6,47 @@ <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saml="urn:oasis:names:tc:SAML:1.0:assertion" xmlns:pr="http://reference.e-government.gv.at/namespace/persondata/20020228#"> <xsl:template match="/" xmlns="http://www.w3.org/1999/xhtml"> <html> + <head> + <title>Signatur der Anmeldedaten</title> + <style type="text/css" media="screen"> + .boldstyle {font-weight: bold; } + .italicstyle { font-style: italic; } + .annotationstyle { font-size: 0.8em; } + table { border:1px solid #000;} + td { border:1px solid #000; padding:4px;} + </style> + </head> <body> -Bitte bestätigen Sie mit Ihrer Unterschrift folgende Angaben: -<br/> - <table border="1"> +<p>Bitte bestätigen Sie mit Ihrer Unterschrift folgende Angaben:</p> + <table> <tr> - <td> - <b>Name:</b> + <td class="boldstyle"> + Name: </td> <td> <xsl:value-of select="//@Issuer"/> </td> </tr> <tr> - <td> - <b>Geburtsdatum:</b> + <td class="boldstyle"> + Geburtsdatum: </td> <td> <xsl:value-of select="substring(//saml:Attribute[@AttributeName='Geburtsdatum']/saml:AttributeValue,9,2)"/>.<xsl:value-of select="substring(//saml:Attribute[@AttributeName='Geburtsdatum']/saml:AttributeValue,6,2)"/>.<xsl:value-of select="substring(//saml:Attribute[@AttributeName='Geburtsdatum']/saml:AttributeValue,1,4)"/> </td> </tr> <tr> - <td> - <b>Applikation:</b> + <td class="boldstyle"> + Applikation: </td> <td> <xsl:value-of select="//saml:Attribute[@AttributeName='OA']/saml:AttributeValue"/> </td> </tr> <xsl:if test="//saml:Attribute[@AttributeName='Geschaeftsbereich']"> - <tr> + <tr class="boldstyle"> <td> - <b>Geschäftsbereich:</b> + Geschäftsbereich: </td> <td> <xsl:value-of select="//saml:Attribute[@AttributeName='Geschaeftsbereich']/saml:AttributeValue"/> @@ -45,24 +54,24 @@ Bitte bestätigen Sie mit Ihrer Unterschrift folgende Angaben: </tr> </xsl:if> <tr> - <td> - <b>Anmeldeserver:</b> + <td class="boldstyle"> + Anmeldeserver: </td> <td> <xsl:value-of select="//saml:NameIdentifier"/> </td> </tr> <tr> - <td> - <b>Datum:</b> + <td class="boldstyle"> + Datum: </td> <td> <xsl:value-of select="substring(//@IssueInstant,9,2)"/>.<xsl:value-of select="substring(//@IssueInstant,6,2)"/>.<xsl:value-of select="substring(//@IssueInstant,1,4)"/> </td> </tr> <tr> - <td> - <b>Uhrzeit:</b> + <td class="boldstyle"> + Uhrzeit: </td> <td> <xsl:value-of select="substring(//@IssueInstant,12,2)"/>:<xsl:value-of select="substring(//@IssueInstant,15,2)"/>:<xsl:value-of select="substring(//@IssueInstant,18,2)"/> @@ -70,20 +79,20 @@ Bitte bestätigen Sie mit Ihrer Unterschrift folgende Angaben: </tr> <xsl:if test="//saml:Attribute[@AttributeName='wbPK']"> <tr> - <td> - <b>wbPK (*):</b> + <td class="boldstyle"> + wbPK (*): </td> <td> <xsl:value-of select="//saml:Attribute[@AttributeName='wbPK']/saml:AttributeValue/pr:Identification/pr:Value"/> </td> </tr> - <tr> - <td colspan="2"> - <font size="2">(*): Das <i>wirtschaftsbereichsspezifische Personenkennzeichen (wbPK)</i> wird aus den jeweiligen Stammzahlen des Bürgers und des Wirtschaftsunternehmens berechnet und ermöglicht eine eindeutige Zuordnung des Bürgers zum Wirtschaftsunternehmen.</font> - </td> - </tr> </xsl:if> </table> + <xsl:if test="//saml:Attribute[@AttributeName='wbPK']"> + <p/> + <hr/> + <div class="annotationstyle">(*): Das <span class="italicstyle">wirtschaftsbereichsspezifische Personenkennzeichen (wbPK)</span> wird aus den jeweiligen Stammzahlen des Bürgers und des Wirtschaftsunternehmens berechnet und ermöglicht eine eindeutige Zuordnung des Bürgers zum Wirtschaftsunternehmen.</div> + </xsl:if> </body> </html> </xsl:template> |