Add sw
This commit is contained in:
parent
7eb8b127d8
commit
86789e6821
34
sw
Normal file
34
sw
Normal file
@ -0,0 +1,34 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Panel zamówień</title>
|
||||
<script src="js/get.js" defer></script>
|
||||
<script src="js/post.js" defer></script>
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1>Aplikacja Zamówień</h1>
|
||||
|
||||
<form id="orderForm">
|
||||
|
||||
Klient:
|
||||
<input type="text">
|
||||
|
||||
Data zamówienia:
|
||||
<input type="date" name="data_zamowienia" value="" required>
|
||||
|
||||
Kwota:
|
||||
<input type="number" name="cena" required>
|
||||
|
||||
<button type="submit">Dodaj</button>
|
||||
</form>
|
||||
|
||||
<button type="submit" onclick="getData()" >Dodaj</button>
|
||||
<table id="ordersTable">
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user