Upload files to ''

This commit is contained in:
Dominika Grajewska 2020-01-13 16:37:32 +00:00
parent b6d1ffa623
commit 48dfedd9b3
5 changed files with 218 additions and 0 deletions

33
code.html Normal file
View File

@ -0,0 +1,33 @@
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="style.css"/>
<link href="https://fonts.googleapis.com/css?family=Raleway&display=swap" rel="stylesheet">
</head>
<body>
<script src="JsBarcode.all.min.js"></script>
<span style="font-size:26px; font-style: bold; display: block; margin-bottom:30px;">dominika_g</span>
<span style="font-size:20px; font-style: bold; padding-top: 80px;">Pokaż kod przy zakupie</span>
<div class="listbox" style="padding-top:100px; width:70%;margin-top:70px;">
<span style="font-size: 25px; display: block;"> Dominika Grajewska </span><br/><br/>
<span style="font-size: 20px; display: block;">numer klienta</span><br/>
<span style="font-size: 20px; display: block;">0028674567</span>
<script>window.setTimeout(function(){
JsBarcode("#barcode", "0028674567", {
lineColor: "#000000",
width: 2,
height: 200,
background: "rgba(255,255,255,0.4)",
displayValue: true
});
}, 0);</script>
<svg id="barcode" style="margin-top:20px">adas</svg>
</div>
</body>
</html>

BIN
cont.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

1
debug.log Normal file
View File

@ -0,0 +1 @@
[1209/172729.308:ERROR:settings.cc(320)] Settings magic is not 1129342067

130
guarant.html Normal file
View File

@ -0,0 +1,130 @@
<!DOCTYPE html>
<link rel="stylesheet" href="style.css"/>
<link href="https://fonts.googleapis.com/css?family=Raleway&display=swap" rel="stylesheet">
<body>
<script>
// document.body.onload = addElement;
function addHeader() {
var newDivhead = document.createElement("div");
var shop = document.createTextNode("EURO RTV AGD");
var date = document.createTextNode("24-03-1996");
var xshop = document.createElement("h3");
var xdate = document.createElement("h3");
xshop.classList.add("headboxmap");
xdate.classList.add("dateboxmap");
xshop.appendChild(shop);
xdate.appendChild(date);
newDivhead.appendChild(xshop);
newDivhead.appendChild(xdate);
var currentDiv = document.getElementById("div2");
document.body.insertBefore(newDivhead, currentDiv);
}
function addElement () {
// create a new div element
var newDiv = document.createElement("div");
// and give it some content
var price = document.createTextNode("$ 123zł");
var prod = document.createTextNode("2 szt.");
var device = document.createTextNode("Pralka BOSH Z345-5TRQ");
var xprice = document.createElement("SPAN");
var xprod = document.createElement("SPAN");
var xdevice = document.createElement("SPAN");
xprice.classList.add("pricemap");
xprod.classList.add("numbmap");
xdevice.classList.add("devicemap");
xprice.appendChild(price);
xprod.appendChild(prod);
xdevice.appendChild(device);
newDiv.appendChild(xdevice);
newDiv.appendChild(xprod);
newDiv.appendChild(document.createElement("br"));
newDiv.appendChild(document.createElement("br"));
newDiv.classList.add("listbox");
var image = document.createElement("img");
var image2 = document.createElement("img");
image.id = "id";
image.className = "mapimg";
image.src = "pin.png"; // image.src = "IMAGE URL/PATH"
newDiv.appendChild(image);
image2.id = "id";
image2.className = "mapimg2";
image2.src = "cont.png"; // image.src = "IMAGE URL/PATH"
newDiv.appendChild(image2);
newDiv.appendChild(xprice);
var currentDiv = document.getElementById("div1");
document.body.insertBefore(newDiv, currentDiv);
}
</script>
<div class="headmap"> <script> addHeader(); </script> </div>
<script> addElement(); </script>
<div class="listbox">
<div id="gdate"> gwarancja ważna do: </div> <br/><br/>
<span id="time" style="font-weight: bold;"> Okres gwarancji: </span> <br/><br/>
<span id="yes"> Gwarancja obejmuje: </span> <br/><br/>
<span id="no"> Gwarancja nie obejmuje: </span>
</div>
<script>function guaranty (){
var sdate = document.getElementById("gdate");
var stime = document.getElementById("time");
var gdate = document.createTextNode("22-09-2022");
sdate.appendChild(gdate);
var time = document.createTextNode("2 lata");
stime.appendChild(time);
var yes = [["uszczelki"],
["szkło"],
["pokrywę wierzchnią"]];
var no = [["uszczelki"],
["szkło"],
["pokrywę wierzchnią"]];
}
guaranty();
</script>
</body>

54
index.html Normal file
View File

@ -0,0 +1,54 @@
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="style.css"/>
<link href="https://fonts.googleapis.com/css?family=Raleway&display=swap" rel="stylesheet">
<script src="JsBarcode.all.js"></script>
<script src="main.js"></script>
</head>
<body>
<span style="font-size:20px;">Zaloguj się</span>
<form action="/action_page.php">
<div class="bord"><image class="icon" src="user.png"></image><input type="text" class="prostokat" placeholder="login">
</input>
</div>
<div class="bord"><image class="icon" src="lock.png"></image><input type="password" class="prostokat" placeholder="hasło">
</input>
</div>
<button type="submit">
<image src="arrow.png" width="30px">
</button>
</form>
<a style="font-size:10px;" href="pass.html">Przypomnij hasło</a><br/><br/>
<span style="font-size:20px;">Zarejestruj się</span>
<form action="/action_page.php">
<div class="bord"><image class="icon" src="name.png"></image><input type="text" class="prostokat" placeholder="imię">
</input>
</div>
<div class="bord"><image class="icon" src="name.png"></image><input type="text" class="prostokat" placeholder="nazwisko">
</input>
</div>
<div class="bord"><image class="icon" src="user.png"></image><input type="text" class="prostokat" placeholder="login">
</input>
</div>
<div class="bord"><image class="icon" src="lock.png"></image><input type="password" class="prostokat" placeholder="hasło">
</input>
</div>
<div class="bord"><image class="icon" src="lock.png"></image><input type="email" required class="prostokat" placeholder="e-mail">
</input>
</div>
<button type="submit">
<image src="arrow.png" width="30px">
</button>
</form>
</body>