-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Julian de Ruiter
committed
Apr 25, 2024
1 parent
33d2f5f
commit f0481e7
Showing
2 changed files
with
98 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css"> | ||
<title>Materialize CSS Example</title> | ||
</head> | ||
<body> | ||
<nav> | ||
<div class="nav-wrapper blue"> | ||
<a href="#" class="brand-logo" style="margin-left: 15%">Patient report</a> | ||
<!-- <ul id="nav-mobile" class="right hide-on-med-and-down"> | ||
<li><a href="sass.html">Sass</a></li> | ||
<li><a href="badges.html">Components</a></li> | ||
<li><a href="collapsible.html">Javascript</a></li> | ||
</ul> --> | ||
</div> | ||
</nav> | ||
|
||
<div class="container"> | ||
<h5>Personal details</h5> | ||
<table class="highlight"> | ||
<tbody> | ||
<tr> | ||
<th width="30%">Name</th> | ||
<td>Emmy</td> | ||
</tr> | ||
<tr> | ||
<th>Age</th> | ||
<td>8</td> | ||
</tr> | ||
<tr> | ||
<th>Admitted on</th> | ||
<td>...</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<br/> | ||
<h5>Assessment scores</h5> | ||
<h6>Physical well-being</h5> | ||
<table class="highlight"> | ||
<thead> | ||
<tr> | ||
<th width="70%">Criteria</th> | ||
<th>Score</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td>Lack of energy</td> | ||
<td>0 (not at all)</td> | ||
</tr> | ||
<tr> | ||
<td>Nausea</td> | ||
<td>4 (very much)</td> | ||
</tr> | ||
<tr> | ||
<td>Pain</td> | ||
<td>3 (quite a bit)</td> | ||
</tr> | ||
<tr> | ||
<td>Side effects of treatment</td> | ||
<td>0 (not at all)</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<br /> | ||
<h6>Social/family well-being</h5> | ||
<table class="highlight"> | ||
<thead> | ||
<tr> | ||
<th width="70%">Criteria</th> | ||
<th>Score</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td>I feel close to my friends </td> | ||
<td>4 (very much)</td> | ||
</tr> | ||
<tr> | ||
<td>I get emotional support from my family</td> | ||
<td>3 (quite a bit)</td> | ||
</tr> | ||
<tr> | ||
<td>I get support from my friends</td> | ||
<td>unknown</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
|
||
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script> | ||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.