-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontribute.html
More file actions
65 lines (61 loc) · 2.57 KB
/
contribute.html
File metadata and controls
65 lines (61 loc) · 2.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contribute | MEDWEAR</title>
<link rel="stylesheet" href="style.css" />
</head>
<header>
<div class="header-upper">
<!-- <img src="assets/images/medwear_logo.png" alt="MEDWEAR Logo" class="logo" /> -->
</div>
<div class="header-lower">
<h1>MEDWEAR</h1>
<p>Open, Interoperable Standards for Medical Wearables</p>
</div>
<hr class="header-separator" />
<div class="under-construction-banner">
🚧 This website is currently under construction. Some content may be incomplete. 🚧
</div>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="standards.html">Standards</a>
<a href="documentation.html">Documentation</a>
<a href="schemas.html" ">Schemas</a>
<a href="contribute.html" class="active">Contribute</a>
<a href="med-api.html">MED-API</a>
</nav>
</header>
<div class="content-container">
<main>
<h2>Contribute to MEDWEAR</h2>
<p>
MEDWEAR is a community-driven project that brings together researchers, industry experts, and developers to create open standards everyone can use.
</p>
<p>
We welcome contributions to improve the schemas, tools, and documentation. Your input helps shape interoperable wearable data standards that can accelerate digital health innovation.
</p>
<h3>How to Contribute</h3>
<ol>
<li>Fork our <a href="https://github.com/SCAI-Lab/ord_schemas.git" target="_blank" rel="noopener">GitHub repository</a>.</li>
<li>Make your changes or additions in your fork, including detailed justifications and documentation.</li>
<li>Submit a Pull Request describing your changes clearly.</li>
<li>We will review your submission and provide feedback.</li>
</ol>
<p>
We encourage active participation and welcome discussions on issues and feature requests.
</p>
</main>
</div>
<footer>
<div class="footer-logos">
<img src="assets/images/scai_logo.png" alt="SCAI Lab Logo" class="logo" style="height: 40px; width: auto; margin-right: 10px;" />
<img src="assets/images/dart_logo.png" alt="DART Logo" class="logo" style="height: 40px; width: auto; margin-right: 10px;" />
<img src="assets/images/ethz_logo.png" alt="ETH Zurich Logo" class="logo" style="height: 20px; width: auto; margin-right: 10px;" />
</div>
<p>© 2025 ETH Zurich – MEDWEAR Project | Contact: diego.paez@scai.ethz.ch</p>
</footer>
</body>
</html>