Skip to content

Commit

Permalink
fix: update to render an image for the empty form
Browse files Browse the repository at this point in the history
  • Loading branch information
Carl Anderson committed Nov 19, 2019
1 parent e8c3414 commit 53a2fbe
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 48 deletions.
49 changes: 1 addition & 48 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,54 +16,7 @@ Visit http://localhost:3001/ to log in (use any username and password)
Select a patient age, gender, indication, and order to determine whether it
is within recommended guidelines.

<div>
<form action="evaluate" method="POST">
<table>
<caption>Enter Patient Demographics</caption>
<tr>
<th><label for="gender">Gender</label></th>
<td>
<select name="gender" required>
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
</td>
</tr>
<tr>
<th><label for="age">Age</label></th>
<td><input name="age" required></td>
</tr>
<tr>
<th><label for="indication">Indication</label></th>
<td>
<input list="indications" name="indication" required>
<datalist id="indications">
<option value="13213009">congenital heart disease</option>
<option value="25064002">headache</option>
<option value="279039007">lower back pain</option>
<option value="423341008">optic disc edema</option>
<option value="27355003">toothache</option>
</datalist>
</td>
</tr>
<tr>
<th><label for="procedure">Procedure</label></th>
<td>
<input list="procedures" name="procedure">
<datalist id="procedures">
<option value="75561">cardiac mri</option>
<option value="70450">ct scan - no contrast material</option>
<option value="71275">cta - with contrast material</option>
<option value="72133">lumbar spine ct scan</option>
<option value="70544">mra - head</option>
</datalist>
</td>
</tr>
</table>
<input type="submit">
</form>
</div>
<img src="./images/empty_form.png" alt="alt text" width="256">

V1 TODO
-------
Expand Down
Binary file added images/empty_form.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 53a2fbe

Please sign in to comment.