summaryrefslogtreecommitdiff
path: root/form.html
blob: 653d74b61cccb89db0561172f81aa03a18f16b59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<form action="/upload" method="post" enctype="multipart/form-data">
	<div style="float: left;">
	<label for="pic">QR Code:</label>
	<input type="file" id="pic" name="pic" accept="image/*">
	</div>

	<div style="float: right;">
	<label for="msg">Message:</label>
	<textarea id="msg" name="msg">Signed message here.</textarea>
	</div>
	<input type="submit" value="Does It Match?" style="float: center; margin-top: 2em;">
</form>