@@ -301,7 +301,7 @@ <h5 id="help_text">
301301 < div class ="shadow_container ">
302302
303303 < div class ="mode_switch_container " id ="mode_switch_container ">
304- < h4 id ="label_firmware "> Firmware</ h4 >
304+ < h4 id ="label_firmware "> Firmware ( < a id =" label_firmware_backup " href =" /backup/fw " > backup </ a > ) </ h4 >
305305 < div class ="toggle_switch_container ">
306306 < input
307307 type ="checkbox "
@@ -312,7 +312,7 @@ <h4 id="label_firmware">Firmware</h4>
312312 < span class ="toggle_switch_slider "> </ span >
313313 </ label >
314314 </ div >
315- < h4 id ="label_filesystem "> File System</ h4 >
315+ < h4 id ="label_filesystem "> File System ( < a id =" label_filesystem_backup " href =" /backup/fs " > backup </ a > ) </ h4 >
316316 </ div >
317317
318318 < div class ="drop_zone " id ="drop_zone ">
@@ -426,7 +426,9 @@ <h6 id="clickable_file_input">or<br />click to select (.bin) file</h6>
426426 "clickable_file_input"
427427 ) ;
428428 const label_firmware = document . getElementById ( "label_firmware" ) ;
429+ const label_firmware_backup = document . getElementById ( "label_firmware_backup" ) ;
429430 const label_filesystem = document . getElementById ( "label_filesystem" ) ;
431+ const label_filesystem_backup = document . getElementById ( "label_filesystem_backup" ) ;
430432 const mode_container = document . getElementById ( "mode_switch_container" ) ;
431433 const mode_checkbox = document . getElementById ( "toggle_switch_checkbox" ) ;
432434 const info_text_chipspecs = document . getElementById (
@@ -482,14 +484,19 @@ <h6 id="clickable_file_input">or<br />click to select (.bin) file</h6>
482484 getInfos ( ) ;
483485
484486 label_firmware . style . color = "black" ;
487+ label_firmware_backup . style . color = "black" ;
485488
486489 mode_checkbox . addEventListener ( "change" , function ( ) {
487490 if ( mode_checkbox . checked ) {
488491 label_firmware . style . color = "gray" ;
492+ label_firmware_backup . style . color = "gray" ;
489493 label_filesystem . style . color = "black" ;
494+ label_filesystem_backup . style . color = "black" ;
490495 } else {
491496 label_firmware . style . color = "black" ;
497+ label_firmware_backup . style . color = "black" ;
492498 label_filesystem . style . color = "gray" ;
499+ label_filesystem_backup . style . color = "gray" ;
493500 }
494501 } ) ;
495502
0 commit comments