Files
test/hamadmin.html
2025-11-27 22:25:36 +00:00

63 lines
2.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>SRD Update</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<p>Form for updating bands that are currently being monitored/worked</p>
<p>Fill out these as pairs then click submit, you need to fill 1 pair as a minimum:</p>
<form action="hamupdate.php" method="post">
<div class="form-group row">
<label for="band[]" class="col-4 col-form-label">Band / Mode 1</label>
<div class="col-8">
<input id="band[]" name="band[]" type="text" class="form-control">
</div>
</div>
<div class="form-group row">
<label for="band[]" class="col-4 col-form-label">Freq / Comments 1</label>
<div class="col-8">
<input id="band[]" name="band[]" type="text" class="form-control">
</div>
</div>
<div class="form-group row">
<label for="band[]" class="col-4 col-form-label">Band / Mode 2</label>
<div class="col-8">
<input id="band[]" name="band[]" type="text" class="form-control">
</div>
</div>
<div class="form-group row">
<label for="band[]" class="col-4 col-form-label">Freq / Comments 2</label>
<div class="col-8">
<input id="band[]" name="band[]" type="text" class="form-control">
</div>
</div>
<div class="form-group row">
<label for="band[]" class="col-4 col-form-label">Band / Mode 3</label>
<div class="col-8">
<input id="band[]" name="band[]" type="text" class="form-control">
</div>
</div>
<div class="form-group row">
<label for="band[]" class="col-4 col-form-label">Freq / Comments 3</label>
<div class="col-8">
<input id="band[]" name="band[]" type="text" class="form-control">
</div>
</div>
<div class="form-group row">
<div class="offset-4 col-8">
<button name="submit" type="submit" class="btn btn-primary">Submit</button>
</div>
</div>
</form>
</body>
<script>
</script>
</html>