{"id":4605,"date":"2025-06-20T21:15:32","date_gmt":"2025-06-20T11:45:32","guid":{"rendered":"https:\/\/primanota.org.au\/?page_id=4605"},"modified":"2025-06-23T01:02:50","modified_gmt":"2025-06-22T15:32:50","slug":"xproxy","status":"publish","type":"page","link":"https:\/\/primanota.org.au\/ru\/xproxy\/","title":{"rendered":"Xproxy"},"content":{"rendered":"\n<p><\/p>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-32cbf97e alignfull uagb-is-root-container\"><div class=\"uagb-container-inner-blocks-wrap\">\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\" \/>\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\/>\n  <title>Proxy Voting Form \u2013 Prima Nota<\/title>\n  <style>\n    body {\n      font-family: Arial, sans-serif;\n      max-width: 900px;\n      margin: 0 auto;\n      padding: 20px;\n      background: #f9f9f9;\n    }\n    h1 {\n      text-align: center;\n      font-size: 1.8em;\n      margin-bottom: 20px;\n      color: #333;\n    }\n    label {\n      display: block;\n      margin-top: 15px;\n      font-weight: bold;\n    }\n    input[type=\"text\"], input[type=\"date\"], input[type=\"email\"], textarea {\n      width: 100%;\n      padding: 8px;\n      margin-top: 5px;\n      border: 1px solid #ccc;\n      border-radius: 4px;\n      box-sizing: border-box;\n    }\n    .radio-group {\n      margin-top: 10px;\n    }\n    .radio-group label {\n      font-weight: normal;\n      display: block;\n    }\n    .checkbox-inline {\n      margin-top: 15px;\n    }\n    .button-container {\n      text-align: center;\n      margin-top: 30px;\n    }\n    button {\n      padding: 10px 20px;\n      font-size: 16px;\n      background: #3366cc;\n      color: white;\n      border: none;\n      border-radius: 6px;\n      cursor: pointer;\n    }\n    button:hover {\n      background: #254f9a;\n    }\n    footer {\n      text-align: center;\n      font-size: 0.8em;\n      color: #888;\n      margin-top: 40px;\n    }\n    @media print {\n      footer,\n      header,\n      .site-header,\n      .wp-block-site-title,\n      .wp-block-site-logo,\n      .wp-block-navigation,\n      .page-header,\n      .entry-header,\n      button {\n        display: none !important;\n      }\n      .radio-group label {\n        display: none !important;\n      }\n      .radio-group label.show-in-print,\n      label.show-in-print {\n        display: block !important;\n      }\n      label#witness-label,\n      input#witness {\n        display: none !important;\n      }\n    }\n  <\/style>\n<\/head>\n<body>\n\n  <h3>Proxy Voting Form<\/h3>\n\n  <form id=\"proxy-form\" action=\"\/send-pdf.php\" method=\"POST\" target=\"hiddenFrame\">\n    <label for=\"name\">I,<\/label>\n    <input type=\"text\" id=\"name\" name=\"name\" required \/>\n    <p>(Full name of member), being a member of Prima Nota Inc., hereby appoint:<\/p>\n\n    <label for=\"proxyName\">Proxy Holder Name<\/label>\n    <input type=\"text\" id=\"proxyName\" name=\"proxyName\" value=\"Nina Iouguina\" required \/>\n    <p>(Full name of proxy holder, must also be a member) as my proxy to vote on my behalf at the Special General Meeting of Prima Nota Inc. to be held on:<\/p>\n\n    <label for=\"meetingDate\">Date<\/label>\n    <input type=\"date\" id=\"meetingDate\" name=\"meetingDate\" required \/>\n\n    <label for=\"location\">Location<\/label>\n    <input type=\"text\" id=\"location\" name=\"location\" value=\"Zoom meeting\" required \/>\n\n    <label>I direct<\/label>\n    <div class=\"radio-group\" id=\"radioGroup\">\n      <label><input type=\"radio\" name=\"direction\" value=\"discretion\" required \/> My proxy may vote on any motion at their discretion.<\/label>\n      <label><input type=\"radio\" name=\"direction\" value=\"favour\" \/> My proxy to vote in favour of the resolution.<\/label>\n      <label><input type=\"radio\" name=\"direction\" value=\"against\" \/> My proxy to vote against the resolution.<\/label>\n    <\/div>\n\n    <label for=\"witness\" id=\"witness-label\">Witnessed by (optional)<\/label>\n    <input type=\"text\" id=\"witness\" name=\"witness\" \/>\n\n    <label>Signature<\/label>\n    <p>\n      <iframe style=\"width: 100%; height: 300px; border: none;\" id=\"signatureFrame\" src=\"\/signature-pad-with-date-mobile.html\"><\/iframe>\n    <\/p>\n\n    <input type=\"hidden\" id=\"signatureData\" name=\"signatureData\" \/>\n\n    <div class=\"checkbox-inline\">\n      <label><input type=\"checkbox\" id=\"sendCopy\" name=\"sendCopy\" onchange=\"toggleEmailField()\" \/> I would like to receive a copy of my submission<\/label>\n    <\/div>\n\n    <div id=\"emailField\" style=\"display:none;\">\n      <label for=\"email\">Your Email<\/label>\n      <input type=\"email\" id=\"email\" name=\"email\" \/>\n    <\/div>\n\n    <div class=\"button-container\">\n      <button type=\"button\" onclick=\"prepareForPrintAndSend()\">Print \/ Send as PDF<\/button>\n    <\/div>\n  <\/form>\n\n  <footer>\n    \u00a9 2025 Prima Nota Inc.\n  <\/footer>\n\n  <iframe name=\"hiddenFrame\" style=\"display:none;\"><\/iframe>\n\n  <script>\n    function toggleEmailField() {\n      const emailField = document.getElementById('emailField');\n      const checkbox = document.getElementById('sendCopy');\n      emailField.style.display = checkbox.checked ? 'block' : 'none';\n    }\n\n    function prepareForPrintAndSend() {\n      const radioGroup = document.getElementById('radioGroup');\n      const labels = radioGroup.getElementsByTagName('label');\n      const witnessLabel = document.getElementById('witness-label');\n      const witnessInput = document.getElementById('witness');\n      let selectedLabel = null;\n\n      for (let label of labels) {\n        const radio = label.querySelector('input[type=\"radio\"]');\n        if (radio && radio.checked) {\n          selectedLabel = label;\n          break;\n        }\n      }\n\n      if (!selectedLabel) {\n        alert('Please select a voting direction before submitting.');\n        return;\n      }\n\n      for (let label of labels) {\n        label.classList.remove('show-in-print');\n        label.style.display = 'none';\n      }\n\n      selectedLabel.classList.add('show-in-print');\n      selectedLabel.style.display = 'block';\n\n      if (witnessInput.value.trim() !== '') {\n        witnessLabel.classList.add('show-in-print');\n        witnessInput.classList.add('show-in-print');\n      }\n\n      document.getElementById('proxy-form').submit();\n\n      setTimeout(() => window.print(), 100);\n      setTimeout(() => {\n        for (let label of labels) {\n          label.classList.remove('show-in-print');\n          label.style.display = 'block';\n        }\n        witnessLabel.classList.remove('show-in-print');\n        witnessInput.classList.remove('show-in-print');\n      }, 1100);\n    }\n\n    document.addEventListener('DOMContentLoaded', toggleEmailField);\n\n    \/\/ \u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u043f\u043e\u0434\u043f\u0438\u0441\u0438 \u0438\u0437 iframe\n    window.addEventListener('message', function (event) {\n      if (event.data.type === 'signature') {\n        document.getElementById('signatureData').value = event.data.dataUrl;\n      }\n    });\n  <\/script>\n\n<\/body>\n<\/html>\n<\/div><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Proxy Voting Form \u2013 Prima Nota Proxy Voting Form I, (Full name of member), being a member of Prima Nota Inc., hereby appoint: Proxy Holder Name (Full name of proxy holder, must also be a member) as my proxy to vote on my behalf at the Special General Meeting of Prima Nota Inc. to be [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-4605","page","type-page","status-publish","hentry"],"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"thumblist":false,"thumbrelated":false,"meccarouselthumb":false,"gridsquare":false,"tileview":false,"1536x1536":false,"2048x2048":false,"trp-custom-language-flag":false},"uagb_author_info":{"display_name":"Admin Adminovich","author_link":"https:\/\/primanota.org.au\/ru\/author\/adminprimanota-org-au\/"},"uagb_comment_info":0,"uagb_excerpt":"Proxy Voting Form \u2013 Prima Nota Proxy Voting Form I, (Full name of member), being a member of Prima Nota Inc., hereby appoint: Proxy Holder Name (Full name of proxy holder, must also be a member) as my proxy to vote on my behalf at the Special General Meeting of Prima Nota Inc. to be&hellip;","_links":{"self":[{"href":"https:\/\/primanota.org.au\/ru\/wp-json\/wp\/v2\/pages\/4605","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/primanota.org.au\/ru\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/primanota.org.au\/ru\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/primanota.org.au\/ru\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/primanota.org.au\/ru\/wp-json\/wp\/v2\/comments?post=4605"}],"version-history":[{"count":47,"href":"https:\/\/primanota.org.au\/ru\/wp-json\/wp\/v2\/pages\/4605\/revisions"}],"predecessor-version":[{"id":4665,"href":"https:\/\/primanota.org.au\/ru\/wp-json\/wp\/v2\/pages\/4605\/revisions\/4665"}],"wp:attachment":[{"href":"https:\/\/primanota.org.au\/ru\/wp-json\/wp\/v2\/media?parent=4605"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}