]> git.scottworley.com Git - voter/blobdiff - src/main.rs
Enable checkboxes on page load
[voter] / src / main.rs
index 506c13bb3cbca05ecdbc40cc587f911e720b6f08..bd329fab9f9c864679d5e988e94fbc7cecceee8f 100644 (file)
@@ -75,12 +75,21 @@ fn set_cookie(mut response: cgi::Response, path: &str) -> Result<cgi::Response,
     Ok(response)
 }
 
     Ok(response)
 }
 
-const HTML_HEADER: &str = "
+const HTML_HEADER: &str = "<!DOCTYPE html>
 <html>
   <head>
 <html>
   <head>
+    <meta charset=\"utf-8\">
+    <title>Vote!</title>
     <style>
     <style>
-      input { transform: scale(1.5); }
+      input { transform: scale(1.5) }
     </style>
     </style>
+    <script>
+      window.onload = function() {
+        for (cb of document.getElementsByTagName('input')) {
+          cb.disabled = false
+        }
+      }
+    </script>
   </head>
   <body>
     <table>";
   </head>
   <body>
     <table>";
@@ -97,7 +106,9 @@ fn prompt_for_vote(dir: PathBuf, request: cgi::Request) -> Result<cgi::Response,
         200,
         std::iter::once(Ok(HTML_HEADER.to_owned()))
             .chain(std::io::BufReader::new(cfile).lines().map(|rc| {
         200,
         std::iter::once(Ok(HTML_HEADER.to_owned()))
             .chain(std::io::BufReader::new(cfile).lines().map(|rc| {
-                rc.map(|c| format!("<tr><td><input type=\"checkbox\"></td><td>{c}</td></tr>"))
+                rc.map(|c| {
+                    format!("<tr><td><input type=\"checkbox\" disabled></td><td>{c}</td></tr>")
+                })
             }))
             .chain(std::iter::once(Ok(HTML_FOOTER.to_owned())))
             .collect::<std::io::Result<String>>()
             }))
             .chain(std::iter::once(Ok(HTML_FOOTER.to_owned())))
             .collect::<std::io::Result<String>>()