mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-23 01:55:10 +00:00
41 lines
No EOL
1.2 KiB
HTML
41 lines
No EOL
1.2 KiB
HTML
<html>
|
|
|
|
<head><title> Create New Block </title></head>
|
|
|
|
<body>
|
|
|
|
<link href="client/css/createNewBlockCSS.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> |