-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 981 Bytes
/
Copy pathindex.html
File metadata and controls
26 lines (26 loc) · 981 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>API Integration</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container mt-3">
<div class="d-flex justify-content-center align-items-center" style="height: 100vh;" id="loading">
<div class="spinner-border" style="width: 3rem; height: 3rem;" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
<div class="card mx-5" id="card-container">
<div class="card-body">
<h4 class="card-title text-center">User Details</h4>
<div class="card-text" id="user-details"></div>
</div>
</div>
</div>
<script src="config.js"></script>
<script src="app.js"></script>
</body>
</html>