32 lines
673 B
Plaintext
32 lines
673 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Rechnung anzeigen</title>
|
|
<link rel="stylesheet" href="/css/bootstrap.min.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container-fluid mt-3">
|
|
|
|
<!-- ACTION BAR -->
|
|
<div class="d-flex justify-content-between align-items-center mb-2">
|
|
<h5 class="mb-0">🧾 Rechnung</h5>
|
|
|
|
<a href="/services/open" class="btn btn-primary">
|
|
⬅️ Zurück zu offenen Leistungen
|
|
</a>
|
|
</div>
|
|
|
|
<!-- PDF VIEW -->
|
|
<iframe
|
|
src="<%= pdfUrl %>"
|
|
style="width:100%; height:92vh; border:none;"
|
|
title="Rechnung PDF">
|
|
</iframe>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|