fabric-samples/client/html/createNewBlock.html
2020-02-22 17:42:31 -05:00

41 lines
No EOL
1.2 KiB
HTML

<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>