27 lines
454 B
HTML
27 lines
454 B
HTML
<!DOCTYPE html>
|
|
<html lang="pt-br">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Página Inicial</title>
|
|
<style>
|
|
button {
|
|
padding: 10px 20px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Bem-vindo à Clínica</h1>
|
|
|
|
<button onclick="abrirFormulario()">Adicionar Paciente</button>
|
|
|
|
<script>
|
|
function abrirFormulario() {
|
|
window.location.href = 'Cadastro.html';
|
|
}
|
|
</script>
|
|
|
|
</body>
|
|
</html> |