INF.03-01-21.06-SG/sw
2025-03-06 13:26:06 +00:00

35 lines
689 B
Plaintext

<!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>