35 lines
689 B
Plaintext
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>
|
|
|