-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
418 lines (325 loc) · 14.6 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
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-V4TSGL8LK8"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-V4TSGL8LK8');
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="GovReady facilitates a compliance authorization process that is entirely machine readable and reusable. Compliance as code. Continuous Compliance.">
<title>GovReady® PBC - Compliance as Code - Continuous Compliance</title>
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon-16x16.png">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,400;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" href="assets/css/govready.css">
</head>
<body>
<section class="section header-section">
<div class="container">
<div class="columns">
<div class="column is-one-quarter is-hidden-mobile">
<figure class="image is-800x150">
<a href="/"><img src="assets/img/govready-logo.png"></a>
</figure>
</div>
<div class="column">
<h2 class="tagline is-hidden-mobile">Compliance. Made easy.</h2><br />
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a href="/" class="is-hidden-desktop is-hidden-tablet"><img src="assets/img/govready-logo.png" width="300"></a>
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-end">
<div class="navbar-item">
<!-- <a href="about.html" class="greylink navbar-item">About Us</a> <a href="http://eepurl.com/cN7oJL" class="greylink navbar-item">Join the mailing list</a> <a href="https://github.com/GovReady/govready-q" target="_new" class="greylink navbar-item">Download GovReady-Q</a>
<a href="https://govready-q.readthedocs.io/en/latest/" target="_new" class="greylink navbar-item">Read the Docs</a> -->
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', () => {
// Get all "navbar-burger" elements
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
// Check if there are any navbar burgers
if ($navbarBurgers.length > 0) {
// Add a click event on each of them
$navbarBurgers.forEach( el => {
el.addEventListener('click', () => {
// Get the target from the "data-target" attribute
const target = el.dataset.target;
const $target = document.getElementById(target);
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
el.classList.toggle('is-active');
$target.classList.toggle('is-active');
});
});
}
});
</script>
</nav>
</div>
</div>
</section>
<div style="position: absolute; top: 253px; left: 25%; width:50%; height:500px; background-color: white; padding:20px; z-index:20; border:1px solid gray;">
<!-- <style>
.grid-container {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 20px;
border: 1px solid green;
}
</style> -->
<div style="text-align: center;">
<img src="assets/img/govready-logo.png" style="width:300px;">
</div>
<div style="text-align: center;">
<span style="font-size: 36pt; vertical-align: top;">&<span>
</div>
<div style="text-align: center;">
<img src="assets/img/RegScale_logo_main.png" style="width:300px;">
</div>
<h2 style="font-size: 28pt; text-align: center;">GovReady has been acquired by RegScale!</h2>
<p style="font-size: 22pt; text-align: center;">
<a href="https://regscale.com/blog/govready">Read official announcement</a>
<p>
</div>
<section class="section hero-section">
<div class="container">
<div class="columns" >
<div class="column is-half">
<div class="hero-box">
<h2 class="is-size-3 hero-tag is-size-4-mobile">Compliance is not security</h2>
<span class="hero-copy is-size-5-mobile">GovReady has developed and demonstrated a methodology for automation of compliance processes and documentation leveraging reusable content that greatly reduces the burden on security professionals.</span><br /><p class="hero-content">Based on the philosophy of <em>Compliance-as-Code</em>, GovReady-Q facilitates a compliance authorization process that is entirely machine readable and reusable. Control implementation statements, privacy information, control baselines, and POA&Ms can be imported and exported from GovReady-Q entirely in code.</p><br />
<div class="columns">
<!-- <div class="column is-half has-text-centered">
<div class="control "><a href="http://www.govready.com/assets/docs/govready-two-pager.pdf"><button class="button documentation">Get the Two-Pager</button></a></div>
</div> -->
<div class="column has-text-centered">
<div class="control"><a href="https://github.com/GovReady/govready-q"><button class="button download">Download GovReady</button></a></div>
</div>
</div>
</div>
</div>
<!-- start column two -->
<div class="column">
<figure>
<img src="assets/img/screen.png" class="is-pulled-right is-hidden-mobile img-screen">
</figure>
</div>
</div>
</div>
</section>
<section class="section ribbon-section">
<div class="container">
<div class="columns">
<div class="column is-one-third has-text-centered">
<div style="margin-left:auto; margin-right:auto; width:70%;">
<figure class="is-78x78">
<a href="https://github.com/GovReady/govready-q"><img src="assets/img/icon-opensource.png"></a>
</figure>
<h4>Open Source</h4>
<p class="ribbon">Software is free to use and customize. Fully transparent code base. No vendor lock-in.</p>
</div>
</div>
<div class="column has-text-centered">
<div style="margin-left:auto; margin-right:auto; width:70%;">
<figure class="is-78x78">
<a href="http://open-control.org/"><img src="assets/img/icon-opencontrol.png"></a>
</figure>
<h4>Open Control</h4>
<p class="ribbon">Files are Version-controllable and easily updatable. Inherit data instead of copying and pasting.</p>
</div>
</div>
<div class="column has-text-centered">
<div style="margin-left:auto; margin-right:auto; width:70%;">
<figure class="is-78x78">
<a href="https://pages.nist.gov/OSCAL/"><img src="assets/img/icon-nist.png"></a>
</figure>
<h4>NIST OSCAL</h4>
<p class="ribbon">Fully compatible with <a href="https://pages.nist.gov/OSCAL/">Open Security Controls Assessment Language.</a></p>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container">
<div class="columns is-variable is-1-mobile is-1-tablet is-8-desktop is-8-widescreen is-8-fullhd">
<div class="column is-three-fifths pr-6">
<h3 class="is-size-3 main-box is-size-4-tablet is-size-4-mobile">Empower with Continuous Compliance</h3>
<p class="main is-size-6-mobile">GovReady is the creation of data gurus with over 25 years of making government data accessible and comprehensible.</p>
<p class="main is-size-6-mobile">Unlike existing GRC tools, GovReady’s design leverages automation and an improved user experience to make sense of muddled compliance activities and reduces vulnerabilities introduced by lengthy authorization processes.</p>
<p class="main is-size-6-mobile">GovReady’s platform transforms clunky Excel and PDF forms into a sleek, online environment that connects with organizational data to complete assessments and compliance packages.</p>
<p class="main is-size-6-mobile">GovReady’s platform democratizes compliance and security by collecting and reusing data from previous assessments, increasing the speed of authorization and reducing time needlessly replicating documentation. </p>
<p class="main is-size-6-mobile">Built for organizational collaboration, GovReady breaks down barriers by allowing teams to work together on assessments and allow management offices to easily track assessment progress.</p>
<figure class="is-hidden-mobile">
<img src="assets/img/animated-compliance.gif">
</figure>
</div>
<div class="column">
<div class="q-box">
<figure class="media-right">
<img src="assets/img/govready-q.png" class="grq" >
</figure>
<article class="media">
<figure class="media-right is-hidden-mobile">
<p class="image">
<img src="assets/img/check.png">
</p>
</figure>
<div class="media-content">
<div class="content qlist-box">
<h5 class="qlist-item">Easy to use</h5>
<p class="qlist-content">Easily navigable point and click interface for teams of all technical expertise. More advanced developer functions accessible through documentation.
</p>
</div>
</div>
</article>
<article class="media">
<figure class="media-right is-hidden-mobile">
<p class="image">
<img src="assets/img/check.png">
</p>
</figure>
<div class="media-content">
<div class="content qlist-box">
<h5 class="qlist-item">Self-Service</h5>
<p class="qlist-content">Web application guides users through the compliance process. Imputes and autofills information to reduce time to completion.
</p>
</div>
</div>
</article>
<article class="media">
<figure class="media-right is-hidden-mobile">
<p class="image">
<img src="assets/img/check.png">
</p>
</figure>
<div class="media-content">
<div class="content qlist-box">
<h5 class="qlist-item">Collaborative</h5>
<p class="qlist-content">Work through assessments as a team. Comment, assign, and notify team members throughout assessment. Easily reviewable by authorizing officials and management for maximum accountability.
</p>
</div>
</div>
</article>
<article class="media">
<figure class="media-right is-hidden-mobile">
<p class="image">
<img src="assets/img/check.png">
</p>
</figure>
<div class="media-content">
<div class="content qlist-box">
<h5 class="qlist-item">Customizable</h5>
<p class="qlist-content">From applications to questionnaires to design, GovReady-Q is entirely extensible. Adjust to match your organization’s practices, processes, and style.
</p>
</div>
</div>
</article>
<article class="media">
<figure class="media-right is-hidden-mobile">
<p class="image">
<img src="assets/img/check.png">
</p>
</figure>
<div class="media-content">
<div class="content qlist-box">
<h5 class="qlist-item">Import/Export</h5>
<p class="qlist-content"> Import components and control implementation statements via the OSCAL format. Export deliverables like Privacy Threshold Analysis (PTA) and System Security Plan (SSP).
</p>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<section class="section userfriendly-section">
<div class="container">
<h3 class="is-size-3 userfriendly is-size-5-mobile">User-Friendly & Well Documented</h3>
<div class="columns">
<div class="column is-half userfriendly-box">
<div class="columns">
<div class="column is-one-fifth">
<figure class="is-80x80">
<img src="assets/img/icon-readthedocs.png" class="is-pulled-right is-hidden-mobile">
</figure>
</div>
<div class="column">
<h3 class="is-size-4 doc-sub">Read the Docs</h3>
<p>Read the Docs is a software documentation hosting platform where <a href="https://govready-q.readthedocs.io/en/latest/">GovReady publishes documentation</a> about the GovReady-Q product such as <a href="https://govready-q.readthedocs.io/en/latest/installation-and-setup/index.html">installation instructions</a> and System Requirements.</p>
</div>
</div>
</div>
<div class="column userfriendly-box">
<div class="columns">
<div class="column is-one-fifth">
<figure class="is-80x80">
<img src="assets/img/icon-videos.png" class="is-pulled-right is-hidden-mobile">
</figure>
</div>
<div class="column">
<h3 class="is-size-4 doc-sub">Training Videos</h3>
<p>To complement the Training Manuals, GovReady has recorded <a href="https://vimeo.com/user55895176">more than a dozen short Training Videos</a> showing how to navigate and use the GovReady-Q application.</p>
</div>
</div>
</div>
</div>
<div class="columns">
<div class="column is-half userfriendly-box">
<div class="columns">
<div class="column is-one-fifth">
<figure class="is-80x80">
<img src="assets/img/icon-training.png" class="is-pulled-right is-hidden-mobile">
</figure>
</div>
<div class="column">
<h3 class="is-size-4 doc-sub">Training Manuals</h3>
<p>GovReady prepares custom Training Manuals for organizational deployments upon request. Contact us for support and training opportunities.</p>
</div>
</div>
</div>
<div class="column userfriendly-box">
<div class="columns">
<div class="column is-one-fifth">
<figure class="is-80x80"><img src="assets/img/icon-videos.png" class="is-pulled-right is-hidden-mobile"> </figure>
</div>
<div class="column">
<h3 class="is-size-4 doc-sub">ATO Deliverable Docs</h3>
<p>The list and descriptions of ATO Artifacts can be found <a href="https://docs.google.com/spreadsheets/d/1sckPYnA7gF23XCAguKfDsRFgTiCNesWyJd1AoVRlG_I/edit#gid=0">here</a>.</p>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="content has-text-centered">
<p>
Copyright GovReady © 2022 |
<script type="text/javascript">
var part1 = "info";
var part2 = Math.pow(2,6);
var part3 = String.fromCharCode(part2);
var part4 = "govready.com"
var part5 = part1 + String.fromCharCode(part2) + part4;
document.write("<a href=" + "mai" + "lto" + ":" + part5 + ">Contact GovReady</a>");
</script>
</p>
</div>
</footer>
</body>
</html>