fabric-samples/client/html/searchResults.html
2020-02-22 18:18:11 -05:00

49 lines
No EOL
1.5 KiB
HTML

<html>
<head><title>Results</title></head>
<body>
<link href="/css/mainmenu.css" rel = "stylesheet">
<script src=""></script>
<script src=""></script>
<div class="text-block">
<input type="radio" id="hash#" name="sOption" value="Hash Number">
<label for="hash#">Hash#</label><br>
<input type="radio" id="medName" name="sOption" value="Medicine Name">
<label for="medName">Medicine Name</label><br>
<input type="radio" id="ingred" name="sOption" value="Ingredients">
<label for="ingred">Ingredients</label><br>
<input type="radio" id="origin" name="sOption" value="Origin">
<label for="origin">Origin</label><br>
<input type="radio" id="date" name="sOption" value="Date inputted">
<label for="date">Date</label><br>
<input type="radio" id="price" name="sOption" value="Price">
<label for="price">Price</label><br>
<input type="radio" id="refHash" name="sOption" value="Reference Hash">
<label for="refHash">Reference Hash</label><br>
</div>
<div class="Search">
<label for="search">Search</label>
<input type="text" id="search" name="search">
</div>
<div class="buttons">
<button type="button" onclick="alert('BACKEND')">Back</button>
</div>
</body>
</html>