This commit is contained in:
2025-11-27 22:25:36 +00:00
commit c1667681e7
117 changed files with 91960 additions and 0 deletions

62
hamadmin.html Normal file
View File

@@ -0,0 +1,62 @@
<!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>