-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
50 lines (49 loc) · 1.39 KB
/
index.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
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Certificate DApp</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css"
/>
</head>
<body>
<nav
class="navbar is-link title is-4"
role="navigation"
aria-label="main navigation"
>
<div class="navbar-brand">
<a class="navbar-item" href="/">
<img src="/public/certificate.svg" />
<span class="ml-2"> Certificate DApp </span>
</a>
</div>
<div class="navbar-end">
<a class="navbar-item mx-2" href="/issueCertificate.html">
Issue Certificate
</a>
</div>
</nav>
<section class="section">
<div class="container has-text-centered">
<img src="/public/certificate.svg" width="256" />
<h3 class="title is-4">Search Certificate Details</h3>
<div class="field is-grouped mt-6">
<input
class="input is-large mr-4"
type="text"
id="certificateID"
name="certificateID"
placeholder="Enter Certificate ID"
/>
<div class="control">
<button class="button is-link is-large">Submit</button>
</div>
</div>
</div>
</section>
</body>
</html>