-
Notifications
You must be signed in to change notification settings - Fork 1
/
auth.html
44 lines (44 loc) · 1.54 KB
/
auth.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Authenticate</title>
</head>
<link rel="stylesheet" href="style.css">
<body>
<div>
<center>
<h1>
AUTHENTICATOR PROTOCOL
</h1>
</center>
</div>
<div class="docs"><center>
<select name="Select Document Type" id="docs">
<option value="">(Click to select your Document Type)</option>
<option value="Driver's License">Driver's License</option>
<option value="Proof of Ownership">Proof of Ownership</option>
<option value="Insurance Certificate">Insurance Certificate</option>
<option value="Certificate of Roadworthiness">Certificate of Roadworthiness</option>
<option value="Certificate of Vehicle registration">Certificate of Vehicle registration</option>
<option value="Hackney Permit">Hackney Permit</option>
</select></center>
</div>
<p><center>
<div class="cid">
CONTENT IDENTIFIER
</div>
<p class="searcher">
<input type="text" placeholder="Input Unique CID" class="searcher">
<input type="button" value="Search ▸" class="search">
</p>
</p></center>
<div class="back">
<center>
<a href="./index.html" style="color: white;">← Go Back</a>
</center>
</div>
</body>
</html>