forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.1 KiB
44 lines
1.1 KiB
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
|
|
<html>
|
|
<head>
|
|
<title>Marcação de exames</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()
|
|
{
|
|
return true;
|
|
//return isValid( document.f.data, 0 );
|
|
}
|
|
</script>
|
|
<body>
|
|
<form method='post' action='/siprpWeb/schedule' name='f'>
|
|
<input type="hidden" name="marcacao_tipo" id="marcacao_tipo" value="Exame">
|
|
<table class='text'>
|
|
<tr>
|
|
<td colspan='2'>
|
|
Marcação de Exames para:<br>
|
|
$funcionario
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Data(s)*:</td><td><input type='text' id='data' name='data'></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan='2'>
|
|
Nota: a marcação está sujeita a confirmação via email.<br>
|
|
* - campo de preenchimento obrigatório
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan='2'>
|
|
<input type='submit' value='Marcar' onclick='return validateForm()'>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</body>
|
|
</html>
|