fingerprint/server/templates/pages/admin.dust

25 lines
764 B
Plaintext

<html>
<head>
<title>The Code Bureau : Browser Fingerprint</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
</head>
<body>
<form method="post" action="/api/fingerprints">
<div>
<input type="text" name="_id" placeholder="Id" /><button type="button" class="generate">Generate</button>
</div>
<div>
<input type="text" name="name" placeholder="Name" />
</div>
<div>
<input type="text" name="project" placeholder="Project" />
</div>
<button>Submit</button>
</form>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
<script src="/js/admin.js"></script>
</body>
</html>