-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebCheck.html
More file actions
84 lines (67 loc) · 3.07 KB
/
Copy pathWebCheck.html
File metadata and controls
84 lines (67 loc) · 3.07 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HealthCheck - Conversor de Resultados de Laboratorio</title>
<link rel="stylesheet" href="Frontend/styles/styles.css">
<link rel="icon" type="image/x-icon" href="media/HealthCheck.ico">
<!-- Theme Toggle (load early to prevent flash) -->
<script src="Frontend/scripts/utils/theme-toggle.js"></script>
</head>
<body>
<header>
<div class="logo-section">
<a href="#" class="logo">
<img src="media/corazon.png" alt="Logo de HealthCheck" class="logo-icon">
<span>HealthCheck</span>
</a>
</div>
<div class="right-menu">
<a href="Frontend/pages/History.html" class="btn-primary">Mi Historial</a>
<a href="Frontend/pages/Login.html" class="btn-primary">Iniciar Sesión</a>
<a href="Frontend/pages/Register.html" class="btn-primary">Registrarse</a>
<!-- Theme toggle will be injected here by theme-toggle.js -->
</div>
</header>
<main>
<h1>INGRESA TUS RESULTADOS DE LABORATORIO</h1>
<div class="upload-container" id="uploadContainer">
<div class="upload-icon">
<svg viewBox="0 0 64 64">
<rect x="12" y="8" width="32" height="42" rx="2" />
<rect x="20" y="14" width="16" height="12" rx="1" />
<text x="28" y="23" fill="white" font-size="8" font-weight="bold">PDF</text>
<path d="M28 35 L32 31 L36 35 M32 31 L32 45" stroke-width="2" stroke-linecap="round" />
</svg>
</div>
<input type="file" id="fileInput" accept=".pdf" multiple>
<button class="upload-btn" onclick="document.getElementById('fileInput').click()">
<span>📄</span>
ELEGIR ARCHIVOS
</button>
<p class="upload-text">o soltar archivos aquí</p>
</div>
<div class="features">
<div class="feature-list">
<div class="feature-item">
<div class="check-icon"></div>
<p class="feature-text">Transforma tus resultados de laboratorio complicados de entender en palabras del día a día</p>
</div>
<div class="feature-item">
<div class="check-icon"></div>
<p class="feature-text">Funciona en Mac, Windows y otras plataformas</p>
</div>
<div class="feature-item">
<div class="check-icon"></div>
<p class="feature-text">Mantén el formato original de tu PDF y sin marcas de agua</p>
</div>
</div>
</div>
<div class="breadcrumb">
<a href="Frontend/pages/Results.html" class="btn-primary">Resultados de Laboratorio</a>
</div>
</main>
<script src="script.js"></script>
</body>
</html>