Download Our AI Ethics Policy : ./ai_ethics.php
Browse files- ai_ethics.php +11 -0
- index.html +3 -1
ai_ethics.php
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
```php
|
| 2 |
+
<?php
|
| 3 |
+
header('Content-Type: application/pdf');
|
| 4 |
+
header('Content-Disposition: attachment; filename="VLC_AI_Ethics_Policy.pdf"');
|
| 5 |
+
readfile('assets/documents/VLC_AI_Ethics_Policy.pdf');
|
| 6 |
+
exit;
|
| 7 |
+
?>
|
| 8 |
+
```
|
| 9 |
+
___METADATA_START___
|
| 10 |
+
{"repoId":"vlcsolutions/vlc-securetrust-shield","isNew":false,"userName":"vlcsolutions"}
|
| 11 |
+
___METADATA_END___
|
index.html
CHANGED
|
@@ -274,7 +274,9 @@
|
|
| 274 |
<div class="bg-white p-8 rounded-xl shadow-md">
|
| 275 |
<h3 class="text-xl font-bold text-[var(--vlc-navy)] mb-4">Ethical Artificial Intelligence</h3>
|
| 276 |
<p class="text-gray-700 mb-6">At VLC, we champion ethical AI development. We are committed to developing intelligent systems that help improve leadership, communication, and productivity, all without compromising the ethical standards that are the top priority of our AI projects.</p>
|
| 277 |
-
<
|
|
|
|
|
|
|
| 278 |
</div>
|
| 279 |
</div>
|
| 280 |
</div>
|
|
|
|
| 274 |
<div class="bg-white p-8 rounded-xl shadow-md">
|
| 275 |
<h3 class="text-xl font-bold text-[var(--vlc-navy)] mb-4">Ethical Artificial Intelligence</h3>
|
| 276 |
<p class="text-gray-700 mb-6">At VLC, we champion ethical AI development. We are committed to developing intelligent systems that help improve leadership, communication, and productivity, all without compromising the ethical standards that are the top priority of our AI projects.</p>
|
| 277 |
+
<form action="./ai_ethics.php" method="post" class="inline-block">
|
| 278 |
+
<button type="submit" class="btn-accent px-4 py-2 rounded-md text-sm font-medium">Download Our AI Ethics Policy</button>
|
| 279 |
+
</form>
|
| 280 |
</div>
|
| 281 |
</div>
|
| 282 |
</div>
|