mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-23 01:55:10 +00:00
add html css
This commit is contained in:
parent
28920a3ddc
commit
5dd0cde235
3 changed files with 124 additions and 0 deletions
|
|
@ -0,0 +1,33 @@
|
|||
.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;
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
<html>
|
||||
|
||||
<head><title> Create New Block </title></head>
|
||||
|
||||
<body>
|
||||
|
||||
<link href="/createNewBlock.css" rel = "stylesheet">
|
||||
|
||||
<script src=""></script>
|
||||
<script src=""></script>
|
||||
|
||||
<p> Create New Block </p>
|
||||
|
||||
<br>
|
||||
|
||||
<div class="text-block">
|
||||
<label for="mName">Medicine Name:<br></label>
|
||||
<input type="text" id="mName" name="mName"><br><br>
|
||||
|
||||
<label for= "iList">Ingredient List:<br></label>
|
||||
<input type="text" id="iList" name="iList"><br><br>
|
||||
|
||||
<label for="origin">Origin:<br></label>
|
||||
<input type="text" id="origin" name="origin"><br><br>
|
||||
|
||||
<label for="trans">Transaction:<br></label>
|
||||
<input type="text" id="trans" name="trans"><br><br>
|
||||
|
||||
<label for="qual">Quality:<br></label>
|
||||
<input type="text" id="qual" name="qual"><br><br>
|
||||
</div>
|
||||
|
||||
<div class="buttons">
|
||||
|
||||
<button type="button" onclick="alert('BACKEND')">Create</button>
|
||||
<button type="button" onclick="alert('BACKEND')">Back</button>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
<html>
|
||||
|
||||
<head><title> Search For Block </title></head>
|
||||
|
||||
<body>
|
||||
|
||||
<link href="/css/mainmenu.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>
|
||||
Loading…
Reference in a new issue