mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-01-22 16:50:16 +01:00
19 lines
466 B
HTML
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> |