git-svn-id: https://svn.coded.pt/svn/SIPRP@1623 bb69d46d-e84e-40c8-a05a-06db0d633741
@ -1,64 +0,0 @@
|
||||
function showhide( id )
|
||||
{
|
||||
if( document.getElementById )
|
||||
{
|
||||
obj = document.getElementById( id );
|
||||
if ( obj.style.display == "none" )
|
||||
{
|
||||
obj.style.display = "";
|
||||
document.getElementById( 'span_' + id ).style.color = "#C13F45";
|
||||
}
|
||||
else
|
||||
{
|
||||
obj.style.display = "none";
|
||||
document.getElementById( 'span_' + id ).style.color = "#497895";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function isValidDate( year, month, day )
|
||||
{
|
||||
return day > 0 && ( day <= [, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31][ month ] ||
|
||||
day == 29 && month == 2 && year % 4 == 0 && ( year % 100 > 0 || year % 400 == 0 ) );
|
||||
}
|
||||
|
||||
function isValid( element, type )
|
||||
{
|
||||
switch( type )
|
||||
{
|
||||
// date
|
||||
case 0:
|
||||
if( element.value.search( /^\d\d?\/\d\d?\/\d{1,4}$/ ) != 0 )
|
||||
{
|
||||
alert( "Formato da data incorrecto." );
|
||||
window.setTimeout( "document.getElementById( '" + element.name + "').focus()", 1 );
|
||||
return false;
|
||||
}
|
||||
date_value = element.value.split( "/" );
|
||||
if( ! isValidDate( date_value[ 2 ], date_value[ 1 ], date_value[ 0 ] ) )
|
||||
{
|
||||
alert( "Data inválida." );
|
||||
window.setTimeout( "document.getElementById( '" + element.name + "').focus()", 1 );
|
||||
return false;
|
||||
}
|
||||
break;
|
||||
// integer
|
||||
case 1:
|
||||
if( element.value.search( /^\d\d:\d\d$/ ) != 0 )
|
||||
{
|
||||
alert( "Formato da hora incorrecto." );
|
||||
window.setTimeout( "document.getElementById( '" + element.name + "' ).focus()", 1 );
|
||||
return false;
|
||||
}
|
||||
time_value = element.value.split( ":" );
|
||||
if( time_value[ 0 ] > 23 || time_value[ 1 ] > 59 )
|
||||
{
|
||||
alert( "Hora inválida." );
|
||||
window.setTimeout( "document.getElementById( '" + element.name + "').focus()", 1 );
|
||||
return false;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
Before Width: | Height: | Size: 582 B |
|
Before Width: | Height: | Size: 259 B |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 3.0 KiB |
|
Before Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 3.4 KiB |
|
Before Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 245 B |
|
Before Width: | Height: | Size: 5.6 KiB |
|
Before Width: | Height: | Size: 3.0 KiB |
|
Before Width: | Height: | Size: 189 KiB |
|
Before Width: | Height: | Size: 753 B |
|
Before Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 817 B |
|
Before Width: | Height: | Size: 960 B |
|
Before Width: | Height: | Size: 154 B |
|
Before Width: | Height: | Size: 211 B |
|
Before Width: | Height: | Size: 598 B |
|
Before Width: | Height: | Size: 7.4 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 206 B |
|
Before Width: | Height: | Size: 148 B |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 682 B |
|
Before Width: | Height: | Size: 899 B |
|
Before Width: | Height: | Size: 888 B |
|
Before Width: | Height: | Size: 140 B |
|
Before Width: | Height: | Size: 636 B |
|
Before Width: | Height: | Size: 8.1 KiB |
|
Before Width: | Height: | Size: 6.3 KiB |
|
Before Width: | Height: | Size: 463 B |
|
Before Width: | Height: | Size: 901 B |
|
Before Width: | Height: | Size: 49 B |
@ -1,80 +0,0 @@
|
||||
/*
|
||||
* CSS - SIPRP.pt (print area)
|
||||
*
|
||||
* Made by Ana Fragateiro
|
||||
*
|
||||
* evolute.pt
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
body{
|
||||
background: #fff;
|
||||
margin:0;
|
||||
width:100%;
|
||||
font-size: 13px;
|
||||
font-family:century gothic,verdana,arial,sans-serif;
|
||||
|
||||
}
|
||||
|
||||
.title{
|
||||
font-weight: bold;
|
||||
font-size: 13px;
|
||||
color: #678995;
|
||||
font-family:century gothic,verdana,arial,sans-serif;
|
||||
border-bottom:2px solid #678995;
|
||||
padding:10px 8px;
|
||||
}
|
||||
|
||||
.info{
|
||||
font-size: 12px;
|
||||
color:#444444;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
table{
|
||||
margin: 10px;
|
||||
border-collapse:collapse;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
table .tableheader {
|
||||
font-size: 13px;
|
||||
background: #678995;
|
||||
padding: 5px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
table .tableheader td{
|
||||
padding:10px 8px;
|
||||
}
|
||||
|
||||
table .elements td{
|
||||
border-bottom: 1px solid #cccccc;
|
||||
border-collapse:collapse;
|
||||
padding:6px 8px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
|
||||
.normal_text b{
|
||||
font-weight: bold;
|
||||
color:#BF1B2E;
|
||||
}
|
||||
|
||||
.space{
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
a{
|
||||
color: #bf1b2e;
|
||||
text-decoration: none;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
#cont{
|
||||
width: 800px;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
}
|
||||
@ -1,129 +0,0 @@
|
||||
body
|
||||
{
|
||||
color: #497895;
|
||||
font-family: verdana;
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
.text
|
||||
{
|
||||
color: #497895;
|
||||
font-family: verdana;
|
||||
font-size: 10pt;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
.noticias
|
||||
{
|
||||
color: #497895;
|
||||
font-family: verdana;
|
||||
font-size: 9pt;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
td.asd
|
||||
{
|
||||
border-width: 1px 1px 1px 1px;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
td.title
|
||||
{
|
||||
color: #ffffff;
|
||||
font-family: verdana;
|
||||
font-size: 10pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
td.noticias
|
||||
{
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
td.footer
|
||||
{
|
||||
color: #ffffff;
|
||||
font-family: verdana;
|
||||
font-size: 8pt;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
a:link,
|
||||
a:visited,
|
||||
a:active
|
||||
{
|
||||
color: #497895;
|
||||
font-family: verdana;
|
||||
font-size: 10pt;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover
|
||||
{
|
||||
color: #C13F45;
|
||||
font-family: verdana;
|
||||
font-size: 10pt;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a.menu:link,
|
||||
a.menu:visited,
|
||||
a.menu:active
|
||||
{
|
||||
color: #FFFFFF;
|
||||
font-family: verdana;
|
||||
font-size: 10pt;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a.menu:hover
|
||||
{
|
||||
color: #C13F45;
|
||||
font-family: verdana;
|
||||
font-size: 10pt;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a.big:link,
|
||||
a.big:visited,
|
||||
a.big:active
|
||||
{
|
||||
color: #497895;
|
||||
font-family: verdana;
|
||||
font-size: 12pt;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a.big:hover
|
||||
{
|
||||
color: #C13F45;
|
||||
font-family: verdana;
|
||||
font-size: 12pt;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a.copy:link,
|
||||
a.copy:visited,
|
||||
a.copy:active
|
||||
{
|
||||
color: #FFFFFF;
|
||||
font-family: verdana;
|
||||
font-size: 8pt;
|
||||
font-weight: normal;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
select,
|
||||
option,
|
||||
input
|
||||
{
|
||||
color: #497895;
|
||||
font-family: verdana;
|
||||
margin-top: 0px;
|
||||
}
|
||||
@ -1,534 +0,0 @@
|
||||
/*
|
||||
* CSS - SIPRP.pt (backoffice area)
|
||||
*
|
||||
* Made by Ana Fragateiro
|
||||
*
|
||||
* evolute.pt
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
body{
|
||||
background: #fff url(imgs/bg.png) repeat-x;
|
||||
margin:0;
|
||||
width:100%;
|
||||
font-size: 13px;
|
||||
font-family:century gothic,verdana,arial,sans-serif;
|
||||
|
||||
}
|
||||
|
||||
body #popup{
|
||||
background: #fff url(imgs/none.png) repeat!important;
|
||||
margin:0;
|
||||
width:100%;
|
||||
font-size: 13px;
|
||||
font-family:century gothic,verdana,arial,sans-serif;
|
||||
|
||||
}
|
||||
|
||||
|
||||
#bg_header{
|
||||
background: #f5f5f4;
|
||||
height:100px;
|
||||
position:absolute;
|
||||
right:0;
|
||||
width:50%;
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
.wrapper{
|
||||
width:1024px;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
}
|
||||
|
||||
.wrapper2{
|
||||
width:957px;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
}
|
||||
|
||||
hr{
|
||||
background: url(imgs/hr.png) repeat-x;
|
||||
width:95%;
|
||||
opacity:0.4;
|
||||
filter:alpha(opacity=40);
|
||||
}
|
||||
|
||||
#cont_banner h1{
|
||||
margin-left:26px;
|
||||
background: url(imgs/h1.png) no-repeat center left;
|
||||
padding-left: 27px;
|
||||
color:white;
|
||||
font-size: 25px;
|
||||
|
||||
}
|
||||
|
||||
#cont_banner ul.menu{
|
||||
float:right;
|
||||
list-style: none;
|
||||
margin-right:30px;
|
||||
}
|
||||
|
||||
#cont_banner ul.menu li{
|
||||
float:left;
|
||||
margin-left:35px;
|
||||
color: white;
|
||||
|
||||
}
|
||||
|
||||
#cont_banner ul.menu li a{
|
||||
text-decoration:none;
|
||||
color: white;
|
||||
font-size: 14px;
|
||||
|
||||
}
|
||||
|
||||
#header{
|
||||
background: url(imgs/header.png) no-repeat;
|
||||
margin-top: 8px;
|
||||
width: 1020px;
|
||||
height: 114px;
|
||||
}
|
||||
|
||||
|
||||
#logo{
|
||||
background: url(imgs/logo.png) no-repeat;
|
||||
margin-top: 12px;
|
||||
width: 452px;
|
||||
height: 80px;
|
||||
float: left;
|
||||
margin-left: 46px;
|
||||
}
|
||||
|
||||
|
||||
#lang{
|
||||
float:right;
|
||||
margin-right:30px;
|
||||
position:relative;
|
||||
}
|
||||
|
||||
#menu{
|
||||
height:36px;
|
||||
margin-left:18px;
|
||||
}
|
||||
|
||||
#menu ul{
|
||||
float:left;
|
||||
list-style-type:none;
|
||||
padding:0;
|
||||
}
|
||||
|
||||
#menu ul li{
|
||||
background:url(imgs/hover_l.png) no-repeat scroll 0 0 transparent;
|
||||
display:block;
|
||||
float:left;
|
||||
height:27px;
|
||||
margin-left:-18px;
|
||||
position:relative;
|
||||
width:500px;
|
||||
}
|
||||
|
||||
|
||||
#cima{
|
||||
background: url(imgs/cima.png) no-repeat;
|
||||
width: 957px;
|
||||
height: 7px;
|
||||
margin-left:auto;
|
||||
}
|
||||
|
||||
#cont_banner{
|
||||
background: #678995;
|
||||
width: 957px;
|
||||
min-height: 100px;
|
||||
display: inline-block;
|
||||
|
||||
}
|
||||
#cont_banner .button_back{
|
||||
color: #fff;
|
||||
float: right;
|
||||
margin-top: 10px;
|
||||
margin-right: 35px;
|
||||
font-size: 17px;
|
||||
|
||||
}
|
||||
|
||||
|
||||
#baixo{
|
||||
background: url(imgs/baixo.png) no-repeat;
|
||||
width: 957px;
|
||||
height: 8px;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
}
|
||||
|
||||
#menu_footer{
|
||||
float: right;
|
||||
font-size:11px;
|
||||
margin-right:25px;
|
||||
margin-top:-115px;
|
||||
vertical-align:top;
|
||||
color: #3e4d52;
|
||||
}
|
||||
|
||||
#menu_footer li{
|
||||
background: url(imgs/it.png) no-repeat center left transparent;
|
||||
padding-left: 10px;
|
||||
list-style-type:none;
|
||||
float:left;
|
||||
|
||||
}
|
||||
|
||||
#menu_footer li a{
|
||||
color:#3E4D52;
|
||||
float:left;
|
||||
padding-left:5px;
|
||||
padding-right:10px;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
#menu_footer li#current a, #menu_footer li a:hover{
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#cont{
|
||||
width: 957px;
|
||||
min-height: 100px;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
margin-top:40px;
|
||||
min-height:200px;
|
||||
}
|
||||
|
||||
.contentheading{
|
||||
font-size: 17px;
|
||||
color: #bf1b2e;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
a{
|
||||
color: #bf1b2e;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#footer{
|
||||
background: url(imgs/footer.png) repeat-x;
|
||||
min-height: 60px;
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
z-index: -2;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.wrapperFooter{
|
||||
background:transparent url(imgs/footer_bg.png) no-repeat scroll 0 0;
|
||||
height: 394px;
|
||||
position: relative;
|
||||
z-index: -1;
|
||||
margin-top: -254px;
|
||||
}
|
||||
|
||||
|
||||
.chronoform a{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.cf_label{
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
#copy{
|
||||
color:gray;
|
||||
display:inline-block;
|
||||
font-size:11px;
|
||||
margin-left:25px;
|
||||
margin-top:-100px;
|
||||
vertical-align:top;
|
||||
float:left;
|
||||
}
|
||||
|
||||
.contact{
|
||||
background:url(imgs/login_form.png) no-repeat scroll 0 0 transparent;
|
||||
height:325px;
|
||||
padding-right:25px;
|
||||
width:357px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.contact form{
|
||||
padding-top: 70px;
|
||||
margin-left:30px;
|
||||
}
|
||||
|
||||
.contact .login{
|
||||
margin:0 auto;
|
||||
padding-bottom:18px;
|
||||
width:456px;
|
||||
}
|
||||
|
||||
.contact input{
|
||||
background:url(imgs/textinputbg.gif) repeat-x scroll 0 0 #FFFFFF;
|
||||
border:1px solid #D3D3D3;
|
||||
color:#000000;
|
||||
font-size:15px;
|
||||
margin-bottom:10px;
|
||||
padding:7px 0;
|
||||
text-indent:7px;
|
||||
width:63%;
|
||||
|
||||
}
|
||||
|
||||
.contact input:focus {
|
||||
border:1px solid #678995;
|
||||
}
|
||||
|
||||
.contact label{
|
||||
color:#444444;
|
||||
display:block;
|
||||
font-size:15px;
|
||||
margin-bottom:3px;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
**backoffice css
|
||||
*/
|
||||
|
||||
.title{
|
||||
font-weight: bold;
|
||||
font-size: 13px;
|
||||
color: #678995;
|
||||
font-family:century gothic,verdana,arial,sans-serif;
|
||||
border-bottom:2px solid #678995;
|
||||
padding:10px 8px;
|
||||
}
|
||||
|
||||
.title a{
|
||||
font-weight: normal;
|
||||
margin-left:15px;
|
||||
margin-right:15px;
|
||||
}
|
||||
|
||||
a:hover{
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a.button_back:hover{
|
||||
text-decoration: none!important;
|
||||
}
|
||||
|
||||
.info{
|
||||
font-size: 12px;
|
||||
color:#444444;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
|
||||
table{
|
||||
margin: 10px;
|
||||
border-collapse:collapse;
|
||||
}
|
||||
|
||||
table .tableheader {
|
||||
font-size: 13px;
|
||||
background: #678995;
|
||||
padding: 5px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
table .tableheader td{
|
||||
padding:10px 8px;
|
||||
}
|
||||
|
||||
table .elements td{
|
||||
border-bottom: 1px solid #cccccc;
|
||||
border-collapse:collapse;
|
||||
padding:6px 8px;
|
||||
}
|
||||
|
||||
table tr.elements:hover{
|
||||
color: #000099;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
table .box5{
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
table .box6{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
table .box6 a{
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.icons_info{
|
||||
padding: 6px;
|
||||
}
|
||||
|
||||
.icons_info img{
|
||||
vertical-align: middle;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.ind{
|
||||
padding: 5px;
|
||||
}
|
||||
.normal_text span a{
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.space{
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
fieldset{
|
||||
border:1px solid #678995;
|
||||
float:left;
|
||||
|
||||
width:auto;
|
||||
margin:10px;
|
||||
padding:10px;
|
||||
|
||||
}
|
||||
|
||||
legend{
|
||||
background:none repeat scroll 0 0;
|
||||
border:medium none;
|
||||
color:#678995;
|
||||
padding:2px 6px;
|
||||
font-size: 17px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
#marcacao_tipo label{
|
||||
display:block;
|
||||
float:left;
|
||||
font-weight:bold;
|
||||
line-height:22px;
|
||||
padding:0 10px 0 0;
|
||||
vertical-align:middle;
|
||||
width:100px;
|
||||
}
|
||||
|
||||
#pedido label{
|
||||
display:block;
|
||||
float:left;
|
||||
font-weight:bold;
|
||||
line-height:22px;
|
||||
padding:0 10px 0 0;
|
||||
vertical-align:middle;
|
||||
width:130px;
|
||||
}
|
||||
|
||||
#marcacao_tipo input, #pedido input{
|
||||
float:left;
|
||||
background:url(imgs/textinputbg.gif) repeat-x scroll 0 0 #FFFFFF;
|
||||
border:1px solid #D3D3D3;
|
||||
font-size:12px;
|
||||
margin:2px 0 20px 10px;
|
||||
padding:4px 2px;
|
||||
width:145px;
|
||||
}
|
||||
|
||||
#marcacao_tipo input:focus, #pedido input:focus {
|
||||
border:1px solid #678995;
|
||||
}
|
||||
|
||||
.form_elemnt {
|
||||
float:left;
|
||||
margin-left:30px;
|
||||
width:85%;
|
||||
}
|
||||
|
||||
.nota{
|
||||
color: #444444;
|
||||
font-size: 11px;
|
||||
margin: 6px;
|
||||
width:85%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.name{
|
||||
|
||||
margin-left:10px;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.button_marcar{
|
||||
background:url(imgs/button_marcar.png) no-repeat!important;
|
||||
width:100px!important;
|
||||
height: 30px!important;
|
||||
float:right!important;
|
||||
border:0px solid!important;
|
||||
margin:0px!important;
|
||||
padding:0px!important;
|
||||
|
||||
}
|
||||
.button_marcar:focus{
|
||||
border:none none;
|
||||
|
||||
}
|
||||
|
||||
.button_marcar:hover{
|
||||
background:url(imgs/button_marcar_hover.png) no-repeat!important;
|
||||
}
|
||||
|
||||
.button_marcar:active{
|
||||
background:url(imgs/button_marcar_active.png) no-repeat!important;
|
||||
}
|
||||
|
||||
.texto{
|
||||
margin-left: 30px;
|
||||
|
||||
}
|
||||
|
||||
.button_pedido{
|
||||
background:url(imgs/button_pedido.png) no-repeat!important;
|
||||
width:145px!important;
|
||||
height: 30px!important;
|
||||
float:right!important;
|
||||
border:0px solid!important;
|
||||
margin:0px!important;
|
||||
padding:0px!important;
|
||||
|
||||
|
||||
}
|
||||
.button_pedido:focus{
|
||||
border:none none;
|
||||
|
||||
}
|
||||
|
||||
.button_pedido:hover{
|
||||
background:url(imgs/button_pedido_hover.png) no-repeat!important;
|
||||
}
|
||||
|
||||
.button_pedido:active{
|
||||
background:url(imgs/button_pedido_active.png) no-repeat!important;
|
||||
}
|
||||
|
||||
.button_login{
|
||||
background:url(imgs/button_login.png) no-repeat!important;
|
||||
width:114px!important;
|
||||
height:37px;
|
||||
float: right!important;
|
||||
border:0px solid #D3D3D3!important;
|
||||
color:#000000;
|
||||
font-size:15px;
|
||||
margin-bottom:10px;
|
||||
padding:0px!important;
|
||||
text-indent:7px;
|
||||
margin-right: 36px;
|
||||
|
||||
}
|
||||
|
||||
.button_login:hover{
|
||||
background:url(imgs/button_login_hover.png) no-repeat!important;
|
||||
}
|
||||
|
||||
.button_login:active{
|
||||
background:url(imgs/button_login_active.png) no-repeat!important;
|
||||
}
|
||||
@ -1,88 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
|
||||
<html><head>
|
||||
<title>SIPRP</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="html/css/template.css">
|
||||
<link href="images/favicon.ico" rel="shortcut icon">
|
||||
<script type="text/javascript" src="html/js/cufon.js"></script>
|
||||
<script type="text/javascript" src="html/js/Antipasto_400.font.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
Cufon.replace('#menu', { fontFamily: 'Antipasto', hover:true } );
|
||||
Cufon.replace('h1', { fontFamily: 'Antipasto', hover:true } );
|
||||
Cufon.replace('#menu_s', { fontFamily: 'Antipasto', hover:true } );
|
||||
Cufon.replace('.contentheading', { fontFamily: 'Antipasto', hover:true } );
|
||||
Cufon.replace('.one', { fontFamily: 'Antipasto', hover:true } );
|
||||
Cufon.replace('.resizer', { fontFamily: 'Antipasto', hover:true } );
|
||||
Cufon.replace('.button_back', { fontFamily: 'Antipasto', hover:true } );
|
||||
|
||||
if( !document.all )
|
||||
{
|
||||
window.captureEvents(Event.KEYUP);
|
||||
}
|
||||
else
|
||||
{
|
||||
document.onkeypress = s;
|
||||
}
|
||||
|
||||
function s( e )
|
||||
{
|
||||
if( document.all ) // IE
|
||||
{
|
||||
var e = window.event.keyCode;
|
||||
}
|
||||
else
|
||||
{
|
||||
e = e.which;
|
||||
}
|
||||
if( e == 13 )
|
||||
{
|
||||
document.loginForm.submit();
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="bg_header"></div>
|
||||
|
||||
<div class="wrapper">
|
||||
<div id="header">
|
||||
<div id="logo"></div>
|
||||
<div id="lang"></div>
|
||||
<div id="resizer">
|
||||
<ul class="resizer">
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrapper2">
|
||||
<div id="menu">
|
||||
|
||||
</div>
|
||||
<div id="cima"></div>
|
||||
<div id="cont_banner">
|
||||
<h1>Erro</h1>
|
||||
<hr>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div id="baixo"></div>
|
||||
</div>
|
||||
<div id="cont">
|
||||
<div class="contentheading">$msg</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
|
||||
<div class="wrapper"><div class="wrapperFooter"></div>
|
||||
<div id="copy"></div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,60 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<!-- saved from url=(0028)http://www.evolute.pt/siprp/ -->
|
||||
<HTML><HEAD><TITLE>Siprp</TITLE>
|
||||
<META http-equiv=content-type content="text/html; charset=ISO-8859-1">
|
||||
<META content="MSHTML 6.00.2800.1458" name=GENERATOR></HEAD>
|
||||
<BODY>
|
||||
<TABLE style="WIDTH: 1132px; HEIGHT: 288px; TEXT-ALIGN: left" cellSpacing=2
|
||||
cellPadding=2 border=0>
|
||||
<TBODY>
|
||||
<TR>
|
||||
<TD style="VERTICAL-ALIGN: top; HEIGHT: 50px"><BR></TD>
|
||||
<TD style="VERTICAL-ALIGN: top; WIDTH: 500px; HEIGHT: 50px"><BR></TD>
|
||||
<TD style="VERTICAL-ALIGN: top; HEIGHT: 50px"><BR></TD></TR>
|
||||
<TR>
|
||||
<TD style="VERTICAL-ALIGN: top"><BR></TD>
|
||||
<TD style="VERTICAL-ALIGN: top; WIDTH: 500px; TEXT-ALIGN: left"><IMG
|
||||
style="WIDTH: 449px; HEIGHT: 101px" alt=""
|
||||
src="Siprp_ficheiros/logo_siprp.jpg"></TD>
|
||||
<TD style="VERTICAL-ALIGN: top"><BR></TD></TR>
|
||||
<TR>
|
||||
<TD style="VERTICAL-ALIGN: top"><BR></TD>
|
||||
<TD style="VERTICAL-ALIGN: top"><BR></TD>
|
||||
<TD style="VERTICAL-ALIGN: top"><BR></TD></TR>
|
||||
<TR>
|
||||
<TD style="VERTICAL-ALIGN: top"><BR></TD>
|
||||
<TD style="VERTICAL-ALIGN: top; WIDTH: 500px"><SMALL><SPAN
|
||||
style="FONT-WEIGHT: bold; COLOR: rgb(0,51,102); FONT-FAMILY: verdana">em
|
||||
construção</SPAN></SMALL><BR></TD>
|
||||
<TD style="VERTICAL-ALIGN: top"><BR></TD></TR>
|
||||
<TR>
|
||||
<TD style="VERTICAL-ALIGN: top"><BR></TD>
|
||||
<TD style="VERTICAL-ALIGN: top"><BR></TD>
|
||||
<TD style="VERTICAL-ALIGN: top"><BR></TD></TR>
|
||||
<TR>
|
||||
<TD style="VERTICAL-ALIGN: top"><BR></TD>
|
||||
<TD
|
||||
style="VERTICAL-ALIGN: top; WIDTH: 500px; FONT-FAMILY: verdana"><SMALL></SMALL>
|
||||
<DIV align=justify><SMALL><STRONG>SIPRP - Sociedade Ibérica de Prevenção
|
||||
de Riscos Profissionais</STRONG></SMALL></DIV><SMALL></SMALL>
|
||||
<DIV align=justify><SMALL>ATRIUM SALDANHA</SMALL></DIV><SMALL></SMALL>
|
||||
<DIV align=justify><SMALL>Praça Duque de Saldanha, 1 - 9º
|
||||
C</SMALL></DIV><SMALL></SMALL>
|
||||
<DIV align=justify><SMALL>1050-094 Lisboa</SMALL></DIV><SMALL></SMALL>
|
||||
<DIV align=justify><SMALL>Telefone: (+351) 213 504
|
||||
540</SMALL></DIV><SMALL></SMALL>
|
||||
<DIV align=justify><SMALL>Fax: (+351) 213 504
|
||||
549</SMALL></DIV><SMALL></SMALL>
|
||||
<DIV align=justify><SMALL>E-mail: <A
|
||||
href="mailto:geral@siprp.pt">geral@siprp.pt</A></SMALL></DIV><SMALL></SMALL></TD>
|
||||
<TD style="VERTICAL-ALIGN: top"><BR></TD></TR>
|
||||
<TR>
|
||||
<TD style="VERTICAL-ALIGN: top"><BR></TD>
|
||||
<TD style="VERTICAL-ALIGN: top"><BR></TD>
|
||||
<TD style="VERTICAL-ALIGN: top"><BR></TD></TR>
|
||||
<TR>
|
||||
<TD style="VERTICAL-ALIGN: top"><BR></TD>
|
||||
<TD
|
||||
style="VERTICAL-ALIGN: top; FONT-FAMILY: verdana"><SMALL>Desenvolvimento
|
||||
por: Evolute - Consultoria Informática, Lda</SMALL></TD>
|
||||
<TD style="VERTICAL-ALIGN: top"><BR></TD></TR></TBODY></TABLE><BR></BODY></HTML>
|
||||
@ -1,18 +0,0 @@
|
||||
vti_encoding:SR|utf8-nl
|
||||
vti_timelastmodified:TR|06 Sep 2004 16:01:35 -0000
|
||||
vti_extenderversion:SR|5.0.2.2623
|
||||
vti_cacheddtm:TX|06 Sep 2004 16:01:35 -0000
|
||||
vti_filesize:IR|2907
|
||||
vti_cachedtitle:SR|Siprp
|
||||
vti_cachedbodystyle:SR|<BODY>
|
||||
vti_cachedlinkinfo:VX|S|Siprp_ficheiros/logo_siprp.jpg H|mailto:geral@siprp.pt
|
||||
vti_cachedsvcrellinks:VX|NSUS|images/Siprp_ficheiros/logo_siprp.jpg NHUS|mailto:geral@siprp.pt
|
||||
vti_cachedneedsrewrite:BR|false
|
||||
vti_cachedhasbots:BR|false
|
||||
vti_cachedhastheme:BR|false
|
||||
vti_cachedhasborder:BR|false
|
||||
vti_metatags:VR|HTTP-EQUIV=content-type text/html;\\ charset=ISO-8859-1 GENERATOR MSHTML\\ 6.00.2800.1458
|
||||
vti_charset:SR|windows-1252
|
||||
vti_generator:SR|MSHTML 6.00.2800.1458
|
||||
vti_title:SR|Siprp
|
||||
vti_backlinkinfo:VX|
|
||||
@ -1,11 +0,0 @@
|
||||
vti_encoding:SR|utf8-nl
|
||||
vti_author:SR|op233351b
|
||||
vti_modifiedby:SR|op233351b
|
||||
vti_timelastmodified:TR|06 Sep 2004 17:07:36 -0000
|
||||
vti_timecreated:TR|06 Sep 2004 17:07:36 -0000
|
||||
vti_cacheddtm:TX|06 Sep 2004 17:07:36 -0000
|
||||
vti_filesize:IR|6174
|
||||
vti_extenderversion:SR|5.0.2.2623
|
||||
vti_lastwidth:IX|449
|
||||
vti_lastheight:IX|101
|
||||
vti_backlinkinfo:VX|index.html
|
||||
|
Before Width: | Height: | Size: 545 B |
|
Before Width: | Height: | Size: 5.6 KiB |
|
Before Width: | Height: | Size: 43 KiB |
|
Before Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 708 B |
|
Before Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 6.0 KiB |
|
Before Width: | Height: | Size: 329 B |
|
Before Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 723 B |
|
Before Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 507 B |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 636 B |
|
Before Width: | Height: | Size: 755 B |
|
Before Width: | Height: | Size: 829 B |
|
Before Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 783 B |
@ -1,106 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
|
||||
<html><head>
|
||||
<title>SIPRP</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="html/css/template.css">
|
||||
<link href="images/favicon.ico" rel="shortcut icon">
|
||||
<script type="text/javascript" src="html/js/cufon.js"></script>
|
||||
<script type="text/javascript" src="html/js/Antipasto_400.font.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
Cufon.replace('#menu', { fontFamily: 'Antipasto', hover:true } );
|
||||
Cufon.replace('h1', { fontFamily: 'Antipasto', hover:true } );
|
||||
Cufon.replace('#menu_s', { fontFamily: 'Antipasto', hover:true } );
|
||||
Cufon.replace('.contentheading', { fontFamily: 'Antipasto', hover:true } );
|
||||
Cufon.replace('.one', { fontFamily: 'Antipasto', hover:true } );
|
||||
Cufon.replace('.resizer', { fontFamily: 'Antipasto', hover:true } );
|
||||
Cufon.replace('.button_back', { fontFamily: 'Antipasto', hover:true } );
|
||||
|
||||
if( !document.all )
|
||||
{
|
||||
window.captureEvents(Event.KEYUP);
|
||||
}
|
||||
else
|
||||
{
|
||||
document.onkeypress = s;
|
||||
}
|
||||
|
||||
function s( e )
|
||||
{
|
||||
if( document.all ) // IE
|
||||
{
|
||||
var e = window.event.keyCode;
|
||||
}
|
||||
else
|
||||
{
|
||||
e = e.which;
|
||||
}
|
||||
if( e == 13 )
|
||||
{
|
||||
document.loginForm.submit();
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="bg_header"></div>
|
||||
|
||||
<div class="wrapper">
|
||||
<div id="header">
|
||||
<div id="logo"></div>
|
||||
<div id="lang"></div>
|
||||
<div id="resizer">
|
||||
<ul class="resizer">
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrapper2">
|
||||
<div id="menu">
|
||||
|
||||
</div>
|
||||
<div id="cima"></div>
|
||||
<div id="cont_banner">
|
||||
<h1>Área de Clientes</h1>
|
||||
<hr>
|
||||
<a class="button_back" href="http://www.siprp.pt">« Voltar</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="baixo"></div>
|
||||
</div>
|
||||
<div id="cont">
|
||||
<div class="contentheading">
|
||||
#if ( $msg )
|
||||
$msg
|
||||
#end
|
||||
</div>
|
||||
<div class="contact">
|
||||
|
||||
<form method="post" name="loginForm">
|
||||
<input name="form" value="Entrar" type="hidden">
|
||||
<div class="login">
|
||||
<label>User</label>
|
||||
<input size="15" name="user" type="text" >
|
||||
</div>
|
||||
<div class="login">
|
||||
<label>Password</label>
|
||||
<input size="15" name="password" type="password" >
|
||||
</div>
|
||||
|
||||
<input type="submit" value="" class="button_login">
|
||||
</form></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
|
||||
<div class="wrapper"><div class="wrapperFooter"></div>
|
||||
<div id="copy"></div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,23 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
|
||||
<html><head>
|
||||
<title>SIPRP :: Marcação Consulta/Exame</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="html/css/template.css">
|
||||
|
||||
<script language="javascript" src="/siprpWeb/html/css/funcs.js"></script>
|
||||
|
||||
</head>
|
||||
<body id="popup">
|
||||
|
||||
<div id="text">
|
||||
Empresa: $empresa<br>
|
||||
Estabelecimento: $estabelecimento<br>
|
||||
Funcionário: $funcionario<br>
|
||||
<br>
|
||||
Pedido de marcação de $marcacao_tipo
|
||||
data(s): $data#if( $marcacao_tipo == 'Consulta' )
|
||||
Horário: $hora#end.<br>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,58 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
|
||||
<html><head>
|
||||
<title>SIPRP :: Marcação Consulta</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="html/css/template.css">
|
||||
|
||||
<script language="javascript" src="/siprpWeb/html/css/funcs.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
function validateForm()
|
||||
{
|
||||
return true;
|
||||
//return isValid( document.f.data, 0 ) && isValid( document.f.hora, 1 );
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
</head>
|
||||
<body id="popup">
|
||||
|
||||
<div id="marcacao_tipo">
|
||||
<form method='post' action='/siprpWeb/schedule' name='f'>
|
||||
<input type="hidden" name="marcacao_tipo" id="marcacao_tipo" value="Consulta">
|
||||
<fieldset>
|
||||
<legend>Marcação de Consulta para:</legend>
|
||||
|
||||
<div class="name">
|
||||
$funcionario
|
||||
</div>
|
||||
|
||||
<script language="JavaScript">
|
||||
var cal = new CalendarPopup();
|
||||
</script>
|
||||
|
||||
<div class="form_elemnt">
|
||||
<label>Data(s)*:</label>
|
||||
<input type='text' id='data' name='data'>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="form_elemnt">
|
||||
<label>Horário:</label>
|
||||
<input type='text' id='hora' name='hora'>
|
||||
</div>
|
||||
|
||||
<div class='nota'>
|
||||
Nota: a marcação está sujeita a confirmação via email.<br>
|
||||
* - campo de preenchimento obrigatório
|
||||
</div>
|
||||
|
||||
<input type='submit' value='' class="button_marcar" onclick='return validateForm()'>
|
||||
</fieldset>
|
||||
</form></div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,18 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
|
||||
<html><head>
|
||||
<title>SIPRP :: Marcação Consulta/Exame</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="html/css/template.css">
|
||||
|
||||
<script language="javascript" src="/siprpWeb/html/css/funcs.js"></script>
|
||||
|
||||
</head>
|
||||
<body id="popup">
|
||||
|
||||
<div id="text">
|
||||
O pedido de marcação foi enviado com sucesso.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,53 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
|
||||
<html><head>
|
||||
<title>SIPRP :: Marcação Exames</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="html/css/template.css">
|
||||
|
||||
<script language="javascript" src="/siprpWeb/html/css/funcs.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
|
||||
function validateForm()
|
||||
{
|
||||
return true;
|
||||
//return isValid( document.f.data, 0 );
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
</head>
|
||||
<body id="popup">
|
||||
|
||||
<div id="marcacao_tipo">
|
||||
<form method='post' action='/siprpWeb/schedule' name='f'>
|
||||
<input type="hidden" name="marcacao_tipo" id="marcacao_tipo" value="Exame">
|
||||
<fieldset>
|
||||
<legend>Marcação de Exames para:</legend>
|
||||
|
||||
<div class="name">$funcionario</div>
|
||||
|
||||
<script language="JavaScript">
|
||||
var cal = new CalendarPopup();
|
||||
</script>
|
||||
|
||||
<div class="form_elemnt">
|
||||
<label>Data(s)*:</label>
|
||||
<input type='text' id='data' name='data'>
|
||||
</div>
|
||||
|
||||
|
||||
<div class='nota'>
|
||||
Nota: a marcação está sujeita a confirmação via email.<br>
|
||||
* - campo de preenchimento obrigatório
|
||||
</div>
|
||||
|
||||
<input type='submit' value='' class="button_marcar" onclick='return validateForm()'>
|
||||
</fieldset>
|
||||
</form></div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
@ -1,62 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title>Marcação de consulta / exame</title>
|
||||
<link rel="stylesheet" href="/siprpWeb/html/css/style.css" type="text/css">
|
||||
</head>
|
||||
<script language="javascript" src="/siprpWeb/html/css/funcs.js"></script>
|
||||
<script>
|
||||
function validateForm()
|
||||
{
|
||||
checked = -1;
|
||||
for( i = 0; i < document.f.marcacao_tipo.length; i++ )
|
||||
{
|
||||
if( document.f.marcacao_tipo[ i ].checked )
|
||||
{
|
||||
checked = i;
|
||||
}
|
||||
}
|
||||
if( checked == -1 )
|
||||
{
|
||||
alert( "Tem que escolher o tipo de marcação." );
|
||||
return false;
|
||||
}
|
||||
return isValid( document.f.data, 0 ) && ( checked == 1 || isValid( document.f.hora, 1 ) );
|
||||
}
|
||||
</script>
|
||||
<body>
|
||||
<form method='post' action='/siprpWeb/schedule' name='f'>
|
||||
<table class='text'>
|
||||
<tr>
|
||||
<td colspan='2'>
|
||||
Marcação para:<br>
|
||||
$funcionario
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan='2'>
|
||||
<input type='radio' id='marcacao_tipo' name='marcacao_tipo' value='Consulta' onclick='document.getElementById( "hora" ).disabled = false;'>Consulta
|
||||
<input type='radio' id='marcacao_tipo' name='marcacao_tipo' value='Exame' onclick='document.getElementById( "hora" ).disabled = true;'>Exame
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Data:</td><td><input type='text' id='data' name='data'>dd/mm/aaaa</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Hora:</td><td><input type='text' id='hora' name='hora'>hh:mm</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan='2'>
|
||||
Nota: a marcação está sujeita a confirmação via email.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan='2'>
|
||||
<input type='submit' value='Marcar' onclick='return validateForm()'>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,18 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title>SIPRP :: Erro na Marcação</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="html/css/template.css">
|
||||
|
||||
<script language="javascript" src="/siprpWeb/html/css/funcs.js"></script>
|
||||
|
||||
</head>
|
||||
<body id="popup">
|
||||
|
||||
<div id="texto">
|
||||
Ocorreu um erro a enviar o pedido de marcação.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,17 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
|
||||
<html><head>
|
||||
<title>SIPRP :: Marcação Consulta/Exame</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="html/css/template.css">
|
||||
|
||||
<script language="javascript" src="/siprpWeb/html/css/funcs.js"></script>
|
||||
|
||||
</head>
|
||||
<body id="popup">
|
||||
|
||||
<div id="text">
|
||||
A sua sessão expirou. Para efectuar uma marcação, autentique-se novamente.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,19 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
|
||||
<html><head>
|
||||
<title>SIPRP :: Pedido do Relatório</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="html/css/template.css">
|
||||
|
||||
<script language="javascript" src="/siprpWeb/html/css/funcs.js"></script>
|
||||
|
||||
</head>
|
||||
<body id="popup">
|
||||
|
||||
<div id="text">
|
||||
Empresa: $empresa<br>
|
||||
<br>
|
||||
Pedido de envio de relatório do ano: $ano<br>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||