1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd"> |
---|
2 | <html> |
---|
3 | <head> |
---|
4 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
---|
5 | <link href="css/main.css" rel="stylesheet" media="screen" /> |
---|
6 | <script type="text/javascript"> |
---|
7 | function loadData() { |
---|
8 | var idInfo = parent.document.getElementsByTagName("applet")[0].getPteidId(); |
---|
9 | document.getElementById("numFiscal").value = idInfo.numNIF; |
---|
10 | document.getElementById("numSegurancaSocial").value = idInfo.numSS; |
---|
11 | document.getElementById("numUtenteSaude").value = idInfo.numSNS; |
---|
12 | document.getElementById("versaoCartao").value = idInfo.cardVersion; |
---|
13 | document.getElementById("dataEmissao").value = idInfo.issuingDate; |
---|
14 | document.getElementById("entidadeEmissora").value = idInfo.issuingEntity; |
---|
15 | document.getElementById("tipoDocumento").value = idInfo.documentType; |
---|
16 | document.getElementById("localPedido").value = idInfo.locale; |
---|
17 | return false; |
---|
18 | } |
---|
19 | </script> |
---|
20 | </head> |
---|
21 | <body onload="return loadData();"> |
---|
22 | <div id="content"> |
---|
23 | <div id="center_content"> |
---|
24 | <form action="" method=""> |
---|
25 | <div class="floatLeft"> |
---|
26 | <label>Nº Identificação Fiscal</label></br> |
---|
27 | <label class="gray">TAX No</label></br> |
---|
28 | <input type="text" name="" value="" readonly="true" id="numFiscal"/> |
---|
29 | </div> |
---|
30 | <div class="floatLeft"> |
---|
31 | <label>Nº Segurança Social</label></br> |
---|
32 | <label class="gray">Social Security No</label></br> |
---|
33 | <input type="text" name="" value="" readonly="true" id="numSegurancaSocial"/> |
---|
34 | </div> |
---|
35 | <div class="floatLeft"> |
---|
36 | <label>Nº Utente Saúde</label></br> |
---|
37 | <label class="gray">Health No</label></br> |
---|
38 | <input type="text" name="" value="" readonly="true" id="numUtenteSaude"/></br> |
---|
39 | </div> |
---|
40 | <div class="clear"></div> |
---|
41 | <div class="floatLeft"> |
---|
42 | <label>Versão do Cartão</label></br> |
---|
43 | <label class="gray">Card Version</label></br> |
---|
44 | <input type="text" name="" value="" readonly="true" id="versaoCartao"/> |
---|
45 | </div> |
---|
46 | <div class="floatLeft"> |
---|
47 | <label>Data de Emissão</label></br> |
---|
48 | <label class="gray">Issuing Date</label></br> |
---|
49 | <input type="text" name="" value="" readonly="true" id="dataEmissao"/></br> |
---|
50 | </div> |
---|
51 | <div class="clear"></div> |
---|
52 | <div class="floatLeft"> |
---|
53 | <label>Entidade Emissora</label></br> |
---|
54 | <label class="gray">Issuing Entity</label></br> |
---|
55 | <input type="text" name="" value="" readonly="true" id="entidadeEmissora"/> |
---|
56 | </div> |
---|
57 | <div class="floatLeft"> |
---|
58 | <label>Tipo Documento</label></br> |
---|
59 | <label class="gray">Document Type</label></br> |
---|
60 | <input type="text" name="" value="" readonly="true" id="tipoDocumento"/></br> |
---|
61 | </div> |
---|
62 | <div class="clear"></div> |
---|
63 | <div class="floatLeft"> |
---|
64 | <label>Local de Pedido</label></br> |
---|
65 | <label class="gray">Local of Request</label></br> |
---|
66 | <input type="text" name="" value="" readonly="true" id="localPedido"/> |
---|
67 | </div> |
---|
68 | </form> |
---|
69 | </div> |
---|
70 | </div> |
---|
71 | </body> |
---|
72 | </html> |
---|