-
Notifications
You must be signed in to change notification settings - Fork 0
/
agent.html
166 lines (164 loc) · 5.54 KB
/
agent.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, shrink-to-fit=no"
/>
<title>Agent - MedaChain</title>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/web3.js"></script>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Montserrat:400,400i,700,700i,600,600i&display=swap"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/simple-line-icons/2.4.1/css/simple-line-icons.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.11.1/baguetteBox.min.css"
/>
<link rel="stylesheet" href="assets/css/vanilla-zoom.min.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.png" />
</head>
<body>
<nav
class="navbar navbar-light navbar-expand-lg fixed-top bg-white clean-navbar"
>
<div class="container">
<a class="navbar-brand logo" href="#">MedaChain</a
><button
data-bs-toggle="collapse"
class="navbar-toggler"
data-bs-target="#navcol-1"
>
<span class="visually-hidden">Toggle navigation</span
><span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navcol-1">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html">Log Out</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about-us.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact-us.html">Contact Us</a>
</li>
</ul>
</div>
</div>
</nav>
<main class="page login-page">
<section class="clean-block clean-form dark">
<div
class="container"
style="
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
"
>
<div class="block-heading">
<h2 class="text-info">Agent Portal</h2>
<p>verify the validity of any document in just one click.</p>
</div>
<div
style="
display: flex;
justify-content: space-around;
gap: 10px;
width: 60vw;
margin: 20px;
"
>
<form style="flex: 2">
<div class="mb-3">
<label class="form-label" for="name">Patient Address</label
><input class="form-control item" type="name" id="address" />
</div>
<div class="mb-3">
<label class="form-label" for="name">URL</label
><input class="form-control item" type="name" id="img_url" />
</div>
<p class="btn btn-primary" id="submit" href="">Submit</p>
<p class="btn btn-primary" id="load" href="">Load</p>
</form>
<div
id="status"
style="
background-color: white;
width: 40%;
border-top: 2px solid #5ea4f3;
padding: 20px;
font: optional;
box-shadow: 0px 2px 10px rgb(0 0 0 / 8%);
font-family: 'Montserrat', sans-serif;
font-weight: lighter;
background-size: cover;
background-position: center;
"
>
<h1>Status :</h1>
</div>
</div>
</div>
</section>
</main>
<footer class="page-footer dark">
<div class="container">
<div class="row">
<div class="col-sm-3">
<h5>Get started</h5>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Sign up</a></li>
<li><a href="#">Downloads</a></li>
</ul>
</div>
<div class="col-sm-3">
<h5>About us</h5>
<ul>
<li><a href="#">Company Information</a></li>
<li><a href="#">Contact us</a></li>
<li><a href="#">Reviews</a></li>
</ul>
</div>
<div class="col-sm-3">
<h5>Support</h5>
<ul>
<li><a href="#">FAQ</a></li>
<li><a href="#">Help desk</a></li>
<li><a href="#">Forums</a></li>
</ul>
</div>
<div class="col-sm-3">
<h5>Legal</h5>
<ul>
<li><a href="#">Terms of Service</a></li>
<li><a href="#">Terms of Use</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<p>© 2022 Copyright MedaChain</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.11.1/baguetteBox.min.js"></script>
<script src="assets/js/vanilla-zoom.js"></script>
<script src="assets/js/theme.js"></script>
<script src="assets/js/global.js"></script>
<script src="assets/js/agent.js"></script>
</body>
</html>