Prześlij pliki do 'src/main/templates'

This commit is contained in:
Bartosz Kmieciak 2019-01-11 22:34:36 +00:00
parent 4b0d08f51d
commit 6307ec1414

View File

@ -0,0 +1,53 @@
<!doctype html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<title>Produkt</title>
</head>
<body>
<div class="inf">
<div class="tit">
<h1>Nazwa: {{ .NazwaTw }}</h1>
</div>
<div class="tekst">
Numer Towaru: {{ .ID }}<br><br>
Imie: {{ .Imie }}<br><br>
Nazwisko: {{ .Nazwisko }}<br><br>
Id Pracownika: {{ .PracownikID }}<br><br>
Dodatkowe informacje: {{ .Info}}
</div>
</div>
</body>
<style>
body {
background-color: #E2E2E2
;
}
.inf {
background-color: #BCBCBD;
width: 25%;
display: block;
margin-left: auto;
margin-right: auto;
}
.tit {
background-color: #9497A8;
}
.tekst {
margin-left: 20px;
}
</style>
</head>
</html>