picture-uploader/templates/viewImage.html

13 lines
293 B
HTML
Raw Normal View History

2024-03-08 15:32:44 +01:00
<!DOCTYPE html>
<html>
<head>
<title>Bild anzeigen</title>
</head>
<body>
<h1>Bildanzeige</h1>
<!-- Verwenden des neuen Handlers für die Bild-URL -->
<img src="/image/{{.Filename}}" alt="Hochgeladenes Bild">
2024-04-01 11:35:33 +02:00
<p><a href="/upload">Zurück zum Upload</a></p>
2024-03-08 15:32:44 +01:00
</body>
</html>