Files
termanager2/resources/views/assignments/pdf-viewer.blade.php

44 lines
1.3 KiB
PHP

<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PDF territorio {{ $assignment->territorio?->numero }}</title>
<style>
html, body {
margin: 0;
height: 100%;
background: #111827;
}
.viewer {
width: 100%;
height: 100%;
border: 0;
display: block;
background: #111827;
}
.fallback {
position: fixed;
right: 12px;
bottom: 12px;
z-index: 10;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 10px 14px;
border-radius: 999px;
background: rgba(17, 24, 39, 0.9);
color: #fff;
text-decoration: none;
font: 600 14px/1 system-ui, sans-serif;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
</style>
</head>
<body>
<iframe class="viewer" src="{{ $pdfUrl }}#toolbar=0&navpanes=0&scrollbar=0" title="PDF territorio {{ $assignment->territorio?->numero }}"></iframe>
<a class="fallback" href="{{ $pdfUrl }}" target="_blank" rel="noopener noreferrer">Apri PDF</a>
</body>
</html>