<!doctype html>
<html class="text-slate-700">
<head>
	<title>Scan Contact - Kickstarter for Time</title>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">

	<!-- Tailwind -->
	<script src="https://cdn.tailwindcss.com?plugins=forms"></script>

	<!-- Font Awesome -->
	<script src="https://kit.fontawesome.com/2396c18fde.js" crossorigin="anonymous"></script>

	<link href="css/main.css" rel="stylesheet">
</head>

<body>
<!-- CONTENT -->
<section id="Content" class="p-6 pb-24">
	<!-- Breadcrumb -->
	<div id="ViewBreadcrumb" class="mb-8">
		<h1 class="text-lg text-center font-light relative px-7">
			<!-- Cancel -->
			<a href="account-view.html" class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"><i class="fa-solid fa-chevron-left fa-fw"></i></a>

			Scan Contact
		</h1>
	</div>

	<form>
		<h3 class="text-sm uppercase font-semibold mb-2">Scan a QR Code…</h3>
		<div class="bg-black rounded overflow-hidden relative mb-4">
			<img src="https://picsum.photos/400/400?random=1" class="w-full" />

			<!-- Darken overlay -->
			<!-- Top -->
			<div class="absolute top-0 left-0 right-0 bg-black/50 h-1/4"></div>
			<!-- Reft -->
			<div class="absolute top-1/4 bottom-1/4 left-0 bg-black/50 w-1/4"></div>
			<!-- Right -->
			<div class="absolute top-1/4 bottom-1/4 right-0 bg-black/50 w-1/4"></div>
			<!-- Bottom -->
			<div class="absolute bottom-0 left-0 right-0 bg-black/50 h-1/4"></div>

			<!-- Reticle overlay -->
			<!-- Top-left -->
			<div class="absolute top-1/4 left-1/4 h-6 w-6 border-white border-t-4 border-l-4 drop-shadow"></div>
			<!-- Top-right -->
			<div class="absolute top-1/4 right-1/4 h-6 w-6 border-white border-t-4 border-r-4 drop-shadow"></div>
			<!-- Bottom-left -->
			<div class="absolute bottom-1/4 left-1/4 h-6 w-6 border-white border-b-4 border-l-4 drop-shadow"></div>
			<!-- Bottom-right -->
			<div class="absolute bottom-1/4 right-1/4 h-6 w-6 border-white border-b-4 border-r-4 drop-shadow"></div>
		</div>

		<h3 class="text-sm uppercase font-semibold mb-2">…or Enter Contact Data</h3>
		<input type="text" placeholder="Name (optional)" class="block w-full rounded border-slate-400 mb-2" />
		<input type="text" placeholder="ID" class="block w-full rounded border-slate-400 mb-2" />
		<input type="text" placeholder="Public Key (optional)" class="block w-full rounded border-slate-400 mb-4" />

		<div class="mt-8">
			<input type="submit" class="block w-full text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md mb-2" value="Look Up Contact" />
			<button type="button" class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md">Cancel</button>
		</div>
	</form>
</section>
</body>

</html>