LoRa_APRS_iGate/data/test1.html
richonguzman 0d99af0c57 test1
2023-09-15 17:56:39 -03:00

19 lines
466 B
HTML

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