diff --git a/index.html b/index.html
index ec100c6..a7a79ba 100644
--- a/index.html
+++ b/index.html
@@ -1087,6 +1087,26 @@ let myCustomLogin = function () {
document.querySelectorAll('.admin-options').forEach((option) => {
option.classList.remove('hide-completely');
})
+
+ let sectionPlotUI = ``;
+
+ document.getElementById('sectionplotdiv').innerHTML = sectionPlotUI;
+ const section_plot_btn = document.getElementById('section_plot_btn');
+ section_plot_btn.onclick = function () {
+ let section_plot_value = document.getElementById('section_plot_txt').value;
+ console.log(section_plot_value);
+ // plot func here
+ hidePopup('section_plot_modal')
+ }
}
}