1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849
|
<!DOCTYPE html>
<html lang="en">
<!--
Configuration properties are defined in cfg/config.go and served by the backend as JSON.
To add a new property to the web UI:
1. Add form field in this HTML (inside configForm)
2. Add field handling in config.js (load+save)
3. Add JSON tag to field in cfg/config.go struct
-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{{.AppName}} - Configuration</title>
<link rel="icon" type="image/png" href="../dist/static/pat_logo.png">
<link href="../dist/css/style.css" rel="stylesheet" />
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#">
<span class="btn status-light btn-success"></span> Configuration
</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="/ui">Back to Mailbox</a></li>
</ul>
</div>
</div>
</div>
<div class="container" style="margin-top: 60px">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Configuration</h3>
</div>
<div class="panel-body">
<form id="configForm">
<!-- General Configuration -->
<div class="panel-group" style="margin-top: 20px;">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">General</h3>
</div>
<div class="panel-body">
<div class="form-group">
<label for="mycall">Callsign <span class="text-danger">*</span></label>
<div class="input-group">
<input type="text" class="form-control" id="mycall" name="mycall" required
pattern="[A-Z0-9]{3,7}" oninput="this.value = this.value.toUpperCase()">
<span class="input-group-addon" id="mycall-status" style="visibility: hidden;"></span>
</div>
<small class="form-text text-muted">This field is required. Valid amateur radio callsign
(uppercase only)</small>
</div>
<div id="create-account-prompt" class="alert alert-warning" style="display: none;">
Account not found.
<a href="#" id="create-account-link">Create one?</a>
<p class="text-danger" style="margin-top: 10px;">
Continuing without a Winlink account will automatically initiate an over-the-air activation on
your first connection. The Winlink system will issue a password that is not recoverable if lost.
</p>
</div>
<div class="form-group">
<label for="locator">Maidenhead Locator <span class="text-danger">*</span></label>
<div class="input-group">
<input type="text" class="form-control" id="locator" name="locator" required
pattern="[A-Ra-r]{2}[0-9]{2}[A-Xa-x]{2}">
<span class="input-group-btn">
<button class="btn btn-default" type="button" id="locate-me">
<span class="glyphicon glyphicon-map-marker"></span>
</button>
</span>
</div>
<div id="locate-status" class="text-info" style="display: none; margin-top: 5px;"></div>
<small class="form-text text-muted">This field is required. 4-6 character grid locator</small>
</div>
<div class="form-group">
<label for="secure_login_password">Secure Login Password (optional)</label>
<div class="input-group">
<input type="password" class="form-control" id="secure_login_password"
name="secure_login_password" autocomplete="off">
<span class="input-group-btn">
<button class="btn btn-default" type="button" id="toggle-password">
<span class="glyphicon glyphicon-eye-open"></span>
</button>
</span>
</div>
<small class="form-text text-muted">
Used for secure login challenges. This is the password for your Winlink account.
</small>
</div>
<div class="form-group">
<label for="auxiliary_addresses">Auxiliary Addresses</label>
<input type="text" class="form-control" id="auxiliary_addresses"
placeholder="Callsign:Password (optional)" autocomplete="off">
<small class="form-text text-muted">Callsigns to fetch email on behalf of. Use "callsign:password"
format. Password defaults to Secure Login Password if omitted.</small>
</div>
<div class="form-group">
<label for="auto_download_limit">Auto Download Size Limit</label>
<div class="input-group">
<input type="number" class="form-control" id="auto_download_limit" name="auto_download_limit" min="-1" step="1" pattern="\d*">
<span class="input-group-addon">bytes</span>
</div>
<small class="form-text text-muted">Maximum size in bytes for automatic message downloads. Messages larger than this will prompt for download. Use -1 for no limit.</small>
</div>
<div class="panel-group" style="margin-top: 20px;">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" href="#aliasesCollapse">Connect Aliases <small>(click to
expand)</small></a>
</h4>
</div>
<div id="aliasesCollapse" class="panel-collapse collapse">
<div class="panel-body">
<div id="aliasesContainer">
<div class="alias-row" style="margin-bottom: 15px;">
<div class="row">
<div class="col-sm-4">
<div class="form-group" style="margin-bottom: 10px;">
<input type="text" class="form-control alias-key" placeholder="Alias name">
</div>
</div>
<div class="col-sm-7">
<div class="form-group" style="margin-bottom: 10px;">
<input type="text" class="form-control alias-value" placeholder="Connection URL">
</div>
</div>
<div class="col-sm-1">
<button class="btn btn-danger btn-sm delete-alias">
<span class="glyphicon glyphicon-remove"></span>
</button>
</div>
</div>
</div>
</div>
<button id="addAlias" class="btn btn-success btn-sm" style="margin-top: 10px;" type="button">
<span class="glyphicon glyphicon-plus"></span> Add Alias
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /General Configuration -->
<!-- Transports Configuration -->
<div class="panel-group" style="margin-top: 20px;">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Transports</h3>
</div>
<div class="panel-body">
<div class="panel-group">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" href="#ardopCollapse">ARDOP</a>
</h4>
</div>
<div id="ardopCollapse" class="panel-collapse collapse">
<div class="panel-body">
<div class="checkbox">
<label>
<input type="checkbox" name="listen_methods[]" value="ardop">
Listen for inbound P2P traffic
</label>
</div>
<div class="form-group">
<label for="ardop_addr">TNC Address</label>
<input type="text" class="form-control" id="ardop_addr" placeholder="localhost:8515"
name="ardop_addr">
</div>
<div class="form-group">
<label for="ardop_connect_requests">Connect Requests</label>
<input type="number" class="form-control" id="ardop_connect_requests" name="ardop_connect_requests" min="1">
<small class="form-text text-muted">Number of connect attempts when dialing. Most stations require multiple tries before responding.</small>
</div>
<div class="form-group">
<label for="ardop_arq_bandwidth">ARQ Bandwidth</label>
<select class="form-control" id="ardop_arq_bandwidth" name="ardop_arq_bandwidth">
<option value="200MAX">200 Hz MAX</option>
<option value="500MAX">500 Hz MAX</option>
<option value="1000MAX">1000 Hz MAX</option>
<option value="2000MAX">2000 Hz MAX</option>
<option value="200FORCED">200 Hz FORCED</option>
<option value="500FORCED">500 Hz FORCED</option>
<option value="1000FORCED">1000 Hz FORCED</option>
<option value="2000FORCED">2000 Hz FORCED</option>
</select>
</div>
<div class="checkbox">
<label>
<input type="checkbox" id="ardop_cwid_enabled" name="ardop_cwid_enabled">
Enable CW ID
</label>
</div>
<div class="form-group">
<label for="ardop_beacon_interval">Beacon Interval (seconds)</label>
<input type="number" class="form-control" id="ardop_beacon_interval"
name="ardop_beacon_interval" value="0">
<small class="form-text text-muted">Minimum 10 seconds. Use 0 or leave blank to disable beacons.</small>
</div>
<div class="form-group">
<label for="ardop_rig">Rig</label>
<select class="form-control rig-select" id="ardop_rig" name="ardop_rig">
<option value="">None</option>
</select>
</div>
<div class="checkbox">
<label>
<input type="checkbox" id="ardop_ptt_ctrl" name="ardop_ptt_ctrl">
PTT Control
</label>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" href="#pactorCollapse">PACTOR</a>
</h4>
</div>
<div id="pactorCollapse" class="panel-collapse collapse">
<div class="panel-body">
<div class="checkbox">
<label>
<input type="checkbox" name="listen_methods[]" value="pactor">
Listen for inbound P2P traffic
</label>
</div>
<div class="form-group">
<label for="pactor_path">TNC Path</label>
<input type="text" class="form-control" id="pactor_path" placeholder="/dev/ttyUSB0"
name="pactor_path">
</div>
<div class="form-group">
<label for="pactor_baudrate">Baud Rate</label>
<input type="number" class="form-control" id="pactor_baudrate" placeholder="57600"
name="pactor_baudrate">
</div>
<div class="form-group">
<label for="pactor_init_script">Init Script Path</label>
<input type="text" class="form-control" id="pactor_init_script"
name="pactor_init_script" placeholder="/path/to/init.sh">
<small class="form-text text-muted">Optional script to initialize TNC</small>
</div>
<div class="form-group">
<label for="pactor_rig">Rig</label>
<select class="form-control rig-select" id="pactor_rig" name="pactor_rig">
<option value="">None</option>
</select>
</div>
<div class="checkbox">
<label>
<input type="checkbox" id="pactor_ptt_ctrl" name="pactor_ptt_ctrl">
PTT Control
</label>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" href="#varaHfCollapse">Vara HF</a>
</h4>
</div>
<div id="varaHfCollapse" class="panel-collapse collapse">
<div class="panel-body">
<div class="checkbox">
<label>
<input type="checkbox" name="listen_methods[]" value="varahf">
Listen for inbound P2P traffic
</label>
</div>
<div class="form-group">
<label for="vara_hf_addr">Modem Address</label>
<input type="text" class="form-control" id="vara_hf_addr" placeholder="localhost:8300"
name="vara_hf_addr">
</div>
<div class="form-group">
<label for="vara_hf_bandwidth">Bandwidth</label>
<select class="form-control" id="vara_hf_bandwidth" name="vara_hf_bandwidth">
<option value="500">500 Hz</option>
<option value="2300">2300 Hz</option>
<option value="2750">2750 Hz</option>
</select>
</div>
<div class="form-group">
<label for="vara_hf_rig">Rig</label>
<select class="form-control rig-select" id="vara_hf_rig" name="vara_hf_rig">
<option value="">None</option>
</select>
</div>
<div class="checkbox">
<label>
<input type="checkbox" id="vara_hf_ptt_ctrl" name="vara_hf_ptt_ctrl">
PTT Control
</label>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" href="#varaFmCollapse">Vara FM</a>
</h4>
</div>
<div id="varaFmCollapse" class="panel-collapse collapse">
<div class="panel-body">
<div class="checkbox">
<label>
<input type="checkbox" name="listen_methods[]" value="varafm">
Listen for inbound P2P traffic
</label>
</div>
<div class="form-group">
<label for="vara_fm_addr">Modem Address</label>
<input type="text" class="form-control" id="vara_fm_addr" placeholder="localhost:8300"
name="vara_fm_addr">
</div>
<div class="form-group">
<label for="vara_fm_rig">Rig</label>
<select class="form-control rig-select" id="vara_fm_rig" name="vara_fm_rig">
<option value="">None</option>
</select>
</div>
<div class="checkbox">
<label>
<input type="checkbox" id="vara_fm_ptt_ctrl" name="vara_fm_ptt_ctrl">
PTT Control
</label>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" href="#telnetCollapse">Telnet</a>
</h4>
</div>
<div id="telnetCollapse" class="panel-collapse collapse">
<div class="panel-body">
<div class="checkbox">
<label>
<input type="checkbox" name="listen_methods[]" value="telnet">
Listen for inbound P2P traffic
</label>
</div>
<div class="form-group">
<label for="telnet_listen_addr">Listen Address</label>
<input type="text" class="form-control" id="telnet_listen_addr" placeholder=":8774"
name="telnet_listen_addr">
<small class="form-text text-muted">Network address to listen for telnet-p2p connections
(e.g. ":8774" for all interfaces port 8774)</small>
</div>
<div class="form-group">
<label for="telnet_password">Password</label>
<input type="password" class="form-control" id="telnet_password" name="telnet_password"
autocomplete="new-password">
<small class="form-text text-muted">Authentication password for incoming telnet-p2p
connections</small>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" href="#ax25Collapse">AX.25</a>
</h4>
</div>
<div id="ax25Collapse" class="panel-collapse collapse">
<div class="panel-body">
<div class="checkbox">
<label>
<input type="checkbox" name="listen_methods[]" value="ax25">
Listen for inbound P2P traffic
</label>
</div>
<div class="form-group">
<label for="ax25_beacon_interval">Beacon Interval (seconds)</label>
<input type="number" class="form-control" id="ax25_beacon_interval"
name="ax25_beacon_interval" value="3600">
<small class="form-text text-muted">Minimum 10 seconds between beacons. Use 0 or leave blank to disable beacons. Example: 3600 = hourly</small>
</div>
<div class="form-group">
<label for="ax25_beacon_message">Beacon Message</label>
<input type="text" class="form-control" id="ax25_beacon_message"
name="ax25_beacon_message" value="Winlink P2P">
<small class="form-text text-muted">Content of the beacon message</small>
</div>
<div class="form-group">
<label for="ax25_beacon_dest">Beacon Destination</label>
<input type="text" class="form-control" id="ax25_beacon_dest" name="ax25_beacon_dest"
value="IDENT">
<small class="form-text text-muted">Destination callsign for beacon frames (typically
"IDENT")</small>
</div>
<div class="form-group">
<label for="ax25_engine">Engine</label>
<select class="form-control" id="ax25_engine" name="ax25_engine">
<option value="linux">Linux</option>
<option value="agwpe">AGWPE</option>
<option value="serial-tnc">Serial TNC</option>
</select>
</div>
<div class="form-group">
<label for="ax25_rig">Rig</label>
<select class="form-control rig-select" id="ax25_rig" name="ax25_rig">
<option value="">None</option>
</select>
</div>
<div class="checkbox">
<label>
<input type="checkbox" id="ax25_ptt_ctrl" name="ax25_ptt_ctrl">
PTT Control
</label>
</div>
<small class="form-text text-muted">Linux (kernel AX.25), AGWPE (AGWPE-compatible TNC),
Serial-TNC (direct serial connection)</small>
</div>
<div class="panel-group">
<div class="panel panel-default ax25-engine-config" data-engine="linux">
<div class="panel-heading">
<h5 class="panel-title">
<a data-toggle="collapse" href="#ax25LinuxConfig">Linux</a>
</h5>
</div>
<div id="ax25LinuxConfig" class="panel-collapse collapse in">
<div class="panel-body">
<div class="form-group">
<label for="ax25_linux_port">AX.25 Port</label>
<input type="text" class="form-control" id="ax25_linux_port" placeholder="wl2k"
name="ax25_linux_port">
</div>
</div>
</div>
</div>
<div class="panel panel-default ax25-engine-config" data-engine="agwpe">
<div class="panel-heading">
<h5 class="panel-title">
<a data-toggle="collapse" href="#ax25AGWPEConfig">AGWPE</a>
</h5>
</div>
<div id="ax25AGWPEConfig" class="panel-collapse collapse in">
<div class="panel-body">
<div class="form-group">
<label for="agwpe_addr">AGWPE Address</label>
<input type="text" class="form-control" id="agwpe_addr"
placeholder="localhost:8000" name="agwpe_addr">
</div>
<div class="form-group">
<label for="agwpe_radio_port">Radio Port</label>
<input type="number" class="form-control" id="agwpe_radio_port" min="0" max="3"
value="0" name="agwpe_radio_port">
<small class="form-text text-muted">AGWPE radio port number (0-3)</small>
</div>
</div>
</div>
</div>
<div class="panel panel-default ax25-engine-config" data-engine="serial-tnc">
<div class="panel-heading">
<h5 class="panel-title">
<a data-toggle="collapse" href="#ax25SerialTNCConfig">Serial TNC</a>
</h5>
</div>
<div id="ax25SerialTNCConfig" class="panel-collapse collapse in">
<div class="panel-body">
<div class="form-group">
<label for="serial_tnc_path">Device Path</label>
<input type="text" class="form-control" id="serial_tnc_path"
placeholder="/dev/ttyUSB0" name="serial_tnc_path">
</div>
<div class="form-group">
<label for="serial_tnc_baud">Serial Baud Rate</label>
<input type="number" class="form-control" id="serial_tnc_baud" value="9600"
name="serial_tnc_baud">
</div>
<div class="form-group">
<label for="serial_tnc_type">TNC Type</label>
<select class="form-control" id="serial_tnc_type" name="serial_tnc_type">
<option value="kenwood">Kenwood</option>
<option value="generic">Generic</option>
</select>
</div>
<div class="form-group">
<label for="serial_tnc_hbaud">Packet Baud Rate</label>
<select class="form-control" id="serial_tnc_hbaud" name="serial_tnc_hbaud">
<option value="1200">1200 baud</option>
<option value="9600">9600 baud</option>
</select>
<small class="form-text text-muted">Packet connection speed (1200 or 9600
baud)</small>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /Transports Configuration -->
<!-- Rig Control Configuration -->
<div class="panel-group" style="margin-top: 20px;">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Rig Control</h3>
</div>
<div class="panel-body">
<div class="panel-group">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" href="#rigControlCollapse">Hamlib rigs <small>(click to
expand)</small></a>
</h4>
</div>
<div id="rigControlCollapse" class="panel-collapse collapse">
<div class="panel-body">
<div class="alert alert-info">
<p>Configure your radio equipment connections here. For rig control, we recommend using
the TCP connection type to connect to <code>rigctld</code> from Hamlib - this provides
the most reliable interface for most modern radios.</p>
<p>The rigs you configure here will appear in the "Rig" dropdown menus found in each
transport's configuration section. A single rig configuration can be shared by multiple
transports simultaneously, allowing different communication methods (e.g. ARDOP and VARA
HF) to use the same radio equipment without configuration duplication.</p>
<p>Please note: The TCP option connects to a <code>rigctld</code> instance that must be
running when using rig control features. You can configure the connection now but ensure
rigctld is properly set up and started before attempting to use it. Direct serial
connection requires advanced setup and involves building from source.</p>
</div>
<div id="rigsContainer">
<div class="rig-row" style="margin-bottom: 20px;">
<div class="form-group">
<label>Rig Name <small class="text-muted">(reference name)</small></label>
<input type="text" class="form-control rig-name" placeholder="My IC-7300"
style="width: 100%">
</div>
<div class="row">
<div class="col-md-3">
<div class="form-group">
<label>Connection Type</label>
<select class="form-control rig-network" style="width: 100%">
<option value="tcp">TCP</option>
<option value="serial">Serial</option>
</select>
<small class="text-muted">TCP for rigctld (recommended)</small>
</div>
</div>
<div class="col-md-5">
<div class="form-group">
<label>Address/Port</label>
<input type="text" class="form-control rig-address"
placeholder="192.168.1.100:4532 or /dev/ttyUSB0" style="width: 100%">
<small class="text-muted">TCP: host:port<br>Serial: device path</small>
</div>
</div>
<div class="col-md-3">
<div class="form-group">
<label>Default VFO</label>
<select class="form-control rig-vfo" style="width: 100%">
<option value="">Default</option>
<option value="A">VFO A</option>
<option value="B">VFO B</option>
</select>
<small class="text-muted">Most rigs use VFO A</small>
</div>
</div>
</div>
<button class="btn btn-danger btn-sm delete-rig"
style="margin-left: 10px; margin-top: 10px;">
<span class="glyphicon glyphicon-remove"></span>
</button>
</div>
</div>
<button id="addRig" class="btn btn-success btn-sm" style="margin-top: 10px;" type="button">
<span class="glyphicon glyphicon-plus"></span> Add Rig
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /Rig Control Configuration -->
<!-- GPSd Configuration -->
<div class="panel-group" style="margin-top: 20px;">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">GPSd Configuration</h3>
</div>
<div class="panel-body">
<div class="form-group">
<label for="gpsd_addr">Server Address</label>
<input type="text" class="form-control" id="gpsd_addr" placeholder="localhost:2947"
name="gpsd_addr">
<small class="form-text text-muted">GPSd server address (e.g. localhost:2947)</small>
</div>
<div class="checkbox">
<label>
<input type="checkbox" id="gpsd_update_locator" name="gpsd_update_locator">
Update Locator
</label>
<small class="form-text text-muted" style="display: block; margin-left: 20px;">Automatically
update the locator field in-memory by polling GPSd every hour. On startup, the config's locator
value will be used until the first position is received from GPSd.</small>
</div>
<div class="checkbox">
<label>
<input type="checkbox" id="gpsd_allow_forms" name="gpsd_allow_forms">
Allow Forms GPS Access
</label>
<small class="form-text text-muted text-danger" style="display: block; margin-left: 20px;">Caution: Automatically injects GPS position into forms without explicit consent</small>
</div>
<div class="checkbox">
<label>
<input type="checkbox" id="gpsd_use_server_time" name="gpsd_use_server_time">
Use Server Time
</label>
<small class="form-text text-muted" style="display: block; margin-left: 20px;">Use server time instead of GPS device timestamp</small>
</div>
<div class="checkbox">
<label>
<input type="checkbox" id="gpsd_enable_http" name="gpsd_enable_http" disabled>
Enable GPSd HTTP Proxy
</label>
<small class="form-text text-muted" style="display: block; margin-left: 20px;">This setting is disabled due to security concerns and can only be changed by editing the configuration file manually</small>
</div>
</div>
</div>
</div>
<!-- /GPSd Configuration -->
<!-- Schedule Configuration -->
<div class="panel-group" style="margin-top: 20px;">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Schedule (Cron Jobs)</h3>
</div>
<div class="panel-body">
<div class="alert alert-info">
<strong>Format:</strong> cron(5) schedule followed by command<br>
Example: <code>@hourly connect telnet</code> or <code>0 3 * * * freq ardop:5350</code>
</div>
<div id="scheduleContainer">
<div class="schedule-row" style="margin-bottom: 15px;">
<div class="row">
<div class="col-sm-3">
<div class="form-group" style="margin-bottom: 10px;">
<input type="text" class="form-control schedule-expr" placeholder="* * * * *">
</div>
</div>
<div class="col-sm-8">
<div class="form-group" style="margin-bottom: 10px;">
<input type="text" class="form-control schedule-cmd" placeholder="command">
</div>
</div>
<div class="col-sm-1">
<button class="btn btn-danger btn-sm delete-schedule">
<span class="glyphicon glyphicon-remove"></span>
</button>
</div>
</div>
</div>
</div>
<button id="addSchedule" class="btn btn-success btn-sm" style="margin-top: 10px;" type="button">
<span class="glyphicon glyphicon-plus"></span> Add Schedule
</button>
</div>
</div>
</div>
<!-- /Schedule Configuration -->
<!-- Submit button -->
<div class="form-group form-actions" style="margin-top: 30px;">
<div class="pull-right">
<button type="button" class="btn btn-default" onclick="window.location.reload()">Revert</button>
<button type="submit" form="configForm" class="btn btn-primary" style="margin-left: 10px;">Save
Changes</button>
</div>
<span id="statusMessage" class="text-muted" style="margin-left: 10px;"></span>
</div>
<!-- /Submit button -->
</form>
</div>
</div>
</div>
</div>
</div>
<!-- Restart notice modal -->
<div class="modal fade" id="restartNotice" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Restart Required</h4>
</div>
<div class="modal-body">
<p>Configuration changes have been saved successfully.</p>
<p class="text-warning"><strong>Note:</strong> Some changes will not take effect until the application is
restarted.</p>
<div id="restartStatus" style="display: none; margin-top: 15px;"></div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary" id="restartNow">
<span class="glyphicon glyphicon-refresh" style="margin-right: 5px;"></span>
Restart Now
</button>
</div>
</div>
</div>
</div>
<script src="../dist/js/config.js"></script>
<!-- Create Account Modal -->
<div class="modal fade" id="createAccountModal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Create Winlink Account</h4>
</div>
<div class="modal-body">
<!-- Breadcrumbs -->
<div id="breadcrumb" style="margin-bottom: 20px; font-size: 16px;">
<span class="breadcrumb-step active" data-step="1"><span class="badge">1</span> Callsign</span>
<span class="breadcrumb-arrow"> → </span>
<span class="breadcrumb-step" data-step="2"><span class="badge">2</span> Password</span>
<span class="breadcrumb-arrow"> → </span>
<span class="breadcrumb-step" data-step="3"><span class="badge">3</span> Recovery Email</span>
<span class="breadcrumb-arrow"> → </span>
<span class="breadcrumb-step" data-step="4"><span class="badge">4</span> Confirm</span>
</div>
<!-- Step 1: Callsign -->
<div class="tab-pane active" id="step1" style="margin-top: 20px;">
<p>Welcome! Let's create your Winlink account. Please confirm your callsign below.</p>
<div class="form-group">
<label for="modal-mycall">Callsign</label>
<input type="text" class="form-control" id="modal-mycall" disabled>
</div>
<button type="button" class="btn btn-primary" id="next-step1">Next</button>
</div>
<!-- Step 2: Password -->
<div class="tab-pane" id="step2" style="display: none; margin-top: 20px;">
<p>Choose a password for your account. It must be 6-12 characters long.</p>
<div class="form-group">
<label for="modal-password">Password</label>
<div class="input-group">
<input type="password" class="form-control" id="modal-password" minlength="6" maxlength="12">
<span class="input-group-addon" id="password-status"></span>
</div>
</div>
<div class="form-group">
<label for="modal-password-verify">Verify Password</label>
<div class="input-group">
<input type="password" class="form-control" id="modal-password-verify" minlength="6" maxlength="12">
<span class="input-group-addon" id="password-verify-status"></span>
</div>
</div>
<button type="button" class="btn btn-default" id="prev-step2">Back</button>
<button type="button" class="btn btn-primary" id="next-step2" disabled>Next</button>
</div>
<!-- Step 3: Recovery Email -->
<div class="tab-pane" id="step3" style="display: none; margin-top: 20px;">
<p>Provide a recovery email. This is optional but highly recommended in case you forget your password.</p>
<div class="form-group">
<label for="modal-email">Recovery Email</label>
<div class="input-group">
<input type="email" class="form-control" id="modal-email">
<span class="input-group-addon" id="email-status"></span>
</div>
</div>
<button type="button" class="btn btn-default" id="prev-step3">Back</button>
<button type="button" class="btn btn-primary" id="next-step3">Next</button>
</div>
<!-- Step 4: Summary -->
<div class="tab-pane" id="step4" style="display: none; margin-top: 20px;">
<h4>Confirm Account Creation</h4>
<p>To create your Winlink account, we'll send your chosen callsign, password, and recovery email address
directly to the Winlink system.</p>
<p>Your callsign and password will also be stored locally on your computer in the configuration file. This
is so you can log in and use Winlink services directly from here.</p>
<p>By proceeding, you agree that your data will be handled according to Winlink's Terms, Conditions and
Privacy Policy:</p>
<p><a href="https://winlink.org/terms_conditions" target="_blank">https://winlink.org/terms_conditions</a>
</p>
<div class="checkbox">
<label>
<input type="checkbox" id="consent-checkbox"> I agree to create my Winlink account and store my
credentials locally.
</label>
</div>
<button type="button" class="btn btn-default" id="prev-step4">Back</button>
<button type="button" class="btn btn-success" id="finish-creation" disabled>Create Account</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
|