LoRa_APRS_iGate/data/test1.html

19 lines
466 B
HTML
Raw Normal View History

2023-09-15 22:56:39 +02:00
<!DOCTYPE html>
<html>
<head>
<title>Save Form Data to JSON</title>
</head>
<body>
<h1>Save Form Data to JSON</h1>
<form method="POST" action="process_form.php">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required><br>
<input type="submit" value="Save as JSON">
</form>
</body>
</html>