-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontinuar.html
45 lines (45 loc) · 1.77 KB
/
continuar.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<title>Pagina Datos</title>
<style>
body {
background-image: url("SaludBackground.jpg");
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body>
<h1>Bienvenido al Cargo de tus datos para deteccion de Enfermedad Cardiaca</h1>
<form action="enviardatos.php" name="" method="POST">
<p>En esta pagina realiza el cargo de la informacion, recuerda que es necesario que ingreses tu informacion verdadera:</p>
<strong>Pregunta 1 - Ingreso a consultorio </strong>
<p>Segun este rango de opciones ¿Cual es su edad?</p>
<input type = "number" id ="edad" placeholder="Edad en Numeros"/>
<br>
<br>
<strong>Pregunta 2- Ingreso a consultorio </strong>
<p>Ingrese su peso real teniendo en cuenta Kg (Kilogramos)</p>
<input type = "number" id ="kilogramos" placeholder="Peso en Kg"/>
<br>
<br>
<strong>Pregunta 3- Ingreso a consultorio </strong>
<p>Ingrese su nivel de colesterol teniendo en cuenta mmmol/L (Nivel de glucosa)</p>
<input type = "number" id ="colesterol" placeholder="Colesterol en mmol/L"/>
<br>
<br>
<strong>Pregunta 4 - Ingreso a consultorio</strong>
<p>Ingrese su nivel de hemoglobina teniendo en cuenta dL (dL)</p>
<input type = "number" id ="hemoglobina" placeholder="Hemoglobina en dL"/>
<br>
<br>
<a href="index.html"><input type="button" value="Ir Atras"></a>
<a href=""><input type="button" value="Enviar Datos"></a>
</form>
</body>
</html>