mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-23 01:55:10 +00:00
88 lines
No EOL
2.3 KiB
HTML
88 lines
No EOL
2.3 KiB
HTML
<html>
|
|
|
|
<head><title> Search For Block </title>
|
|
<style>
|
|
|
|
.center{
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 50%;
|
|
}
|
|
|
|
p{
|
|
color: white;
|
|
text-align: center;
|
|
font-family: Brush Script MT;
|
|
font-size: 35px;
|
|
}
|
|
|
|
body{
|
|
background-color: rgb(50, 255, 9);
|
|
}
|
|
|
|
/*h1{
|
|
color: white;
|
|
text-align: center;
|
|
font-family: serif;
|
|
font-size: 30px;
|
|
}*/
|
|
|
|
.text-block {
|
|
position: center;
|
|
bottom: 20px;
|
|
right: 20px;
|
|
background-color: black;
|
|
color: white;
|
|
padding-left: 55px;
|
|
padding-right: 20px;
|
|
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<link href="fabric-samples/client/css/searchForBlockCSS.css" rel = "stylesheet">
|
|
|
|
<script src=""></script>
|
|
<script src=""></script>
|
|
|
|
<p> Search For Block </p>
|
|
|
|
<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> |