-
Notifications
You must be signed in to change notification settings - Fork 332
Expand file tree
/
Copy pathdashboard.ejs
More file actions
27 lines (27 loc) · 1.29 KB
/
dashboard.ejs
File metadata and controls
27 lines (27 loc) · 1.29 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>UniCourt Workshop1</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="../static/style.css">
</head>
<body>
<div class="container-fluid">
<div class="home align-items-center d-flex justify-content-center">
<div class="row align-items-start">
<div class="d-flex justify-content-center align-items-center flex-column">
<img src="/static/images/logo.png" width="120px" height="auto">
<h1 class="mt-50 mb-50">Welcome To Node Workshop</h1>
<div class="d-flex justify-content-center align-items-center">
<a type="submit" class="btn btn-secondary add me-2" href="/nasa">NASA API Call</a>
<a type="submit" class="btn btn-secondary add me-2" href="/search">Wiki Search</a>
<a type="submit" class="btn btn-secondary add" href="/chatgpt">Generate Image using OpenAI</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>