-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
101 lines (90 loc) · 4.93 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Report Gen</title>
<link rel="icon" href="https://raw.githubusercontent.com/gramener/assets/main/straive-favicon.svg">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
<style>
.narrative {
max-width: 40rem;
}
/* Handle markdown output */
#recommendations li p {
margin-bottom: 0;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg bg-body-tertiary" data-bs-theme="dark">
<div class="container-fluid">
<a class="navbar-brand" href=".">Report Gen</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<div class="nav-item dropdown ms-auto" role="group" aria-label="Toggle dark mode" title="Toggle Dark Mode">
<button class="dark-theme-toggle btn btn-outline-light dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false" aria-label="Toggle theme (auto)">
<i class="bi bi-circle-half"></i> <span class="d-lg-none ms-2">Toggle theme</span>
</button>
<ul class="dropdown-menu dropdown-menu-end">
<li><button class="dropdown-item" data-bs-theme-value="light"><i class="me-2 bi bi-sun-fill"></i> Light</button></li>
<li><button class="dropdown-item" data-bs-theme-value="dark"><i class="me-2 bi bi-moon-stars-fill"></i> Dark</button></li>
<li><button class="dropdown-item" data-bs-theme-value="auto"><i class="me-2 bi bi-circle-half"></i> Auto</button></li>
</ul>
</div>
</div>
</div>
</nav>
<div class="container">
<h1 class="display-1 my-4 text-center">Automated letter generation</h1>
<div class="narrative mx-auto">
<p>Automated letter generation is increasingly important in various industries, particularly in compliance and regulatory environments. Organizations often need to generate standardized letters for enforcement actions, notifications, or compliance communications.</p>
<p>The solution consists of three main components:</p>
<ul>
<li><strong>Data Layer</strong>: Structured Data, Knowledge Repository, Document Templates, Research Artifacts, etc.</li>
<li><strong>Processing Layer</strong>: Generative AI & business rules</li>
<li><strong>Visualization Layer</strong>: Final document in desired format</li>
</ul>
<p>This tool aims to streamline the creation of compliance-related documents while ensuring accuracy and adherence to regulations. The use of advanced technology enhances efficiency and reduces manual effort in document preparation.</p>
</div>
<div id="demos" class="row row-cols-1 row-cols-sm-2 row-cols-lg-3 my-5">
<div class="col py-3">
<div class="demo card h-100 text-decoration-none">
<div class="card-body">
<h5 class="card-title">VAPT test</h5>
<p class="card-text">Generate a VAPT test report.</p>
<button class="btn btn-primary mb-3 generate" data-src="vapt.xlsx"><i class="bi bi-gear"></i> Generate</button>
</div>
</div>
</div>
<div class="col py-3">
<div class="demo card h-100">
<label class="card-body">
<h5 class="card-title">Custom Report</h5>
<p class="card-text">Use your own VAPT Excel report.</p>
<div class="d-flex justify-content-between align-items-center">
<label for="file-upload" class="btn btn-primary flex-fill me-2">
<i class="bi bi-cloud-upload"></i> Upload your Excel file
</label>
<a class="btn btn-secondary flex-fill" href="vapt.xlsx">
<i class="bi bi-download"></i> Download
</a>
</div>
<input id="file-upload" type="file" accept=".xlsx" class="d-none">
</div>
</div>
</div>
<div id="login" class="my-5"></div>
<div id="output"></div>
</div>
<footer class="my-5 vh-100 d-flex align-items-center justify-content-center">
<h1 class="display-4">Designed by <a href="https://gramener.com/" class="text-reset link-offset-3 link-underline link-underline-opacity-25">Gramener</a></h1>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" type="module"></script>
<script src="https://cdn.jsdelivr.net/npm/@gramex/[email protected]/dist/dark-theme.js" type="module"></script>
<script src="script.js" type="module"></script>
</body>
</html>