CINXE.COM
Voting page — Academia Europeana
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Voting page — Academia Europeana</title> <link rel="stylesheet" href="themes/base/jquery-ui.css" /> <link rel="stylesheet" href="css/screen.css" /> <script type="text/javascript" src="jquery-3.5.1.min.js"></script> <script type="text/javascript" src="jquery-ui-1.12.1/jquery-ui.min.js"></script> <script type="text/javascript"> function createPage() { var motion = decodeURIComponent(document.location.hash.substr(1)); motions_page.motion_name = motion; console.debug("init", motion); $(".LoginName").text(""); $(".DisplayName").text(""); if (!motion) { motions_page.motion_name = ""; //TODO from cookie } $.get("motion/myself" + motions_page.ext, null, function(data) { if (!data.login_name) { document.cookie = "motion_selected=" + motion + ";max-age=3600"; document.location.href = "/Login.jsp?redirect=" + encodeURIComponent(".." + document.location.pathname); return; } $(".LoginName").text(data.login_name); $(".DisplayName").text(data.display_name); motions_page.user = data; if (motion) { $.get("motion/motion" + motions_page.ext, {motion: motion}, function(data) { $.extend(motions_page, data); createQuestionsPage(); }); } else { $.get("motion/motions" + motions_page.ext, null, function(data) { $.extend(motions_page, data); createMotionsPage(); }); } }); } </script> <script type="text/javascript" src="js/motions.js"></script> <link rel="stylesheet" type="text/css" href="css/motions.css"> </head> <body> <div id="page_head"> <div id="logo"> <a href="/ae/%22Acad_Main%22"> <img style="height: 92px; width: 850px;" src="https://www.ae-info.org/templates/default/skins/Smart/images/acadlogo.png" alt="Home"> </a> </div> <div id="ikey"> </div> <h2>Voting page for members of the Academia Europaea: AGM <span class="AGMYear">2023</span></h2> <div id="detailedInstructions"> Instructions: <p> Choose the motion you want to vote on from the list of running motions. You can then decide on the question(s) of the motion. You can only submit your vote once. Whenever there are upcoming or active ballots you will find the voting period below the ballot. </p> </div> <div class="Menu"> <span class="MenuLeft"> <a href="/ae/%22Acad_Main%22">Home</a> <a href="Member_votes.html">Ballots</a> <a id="resultLink" href="Member_vote_results.html">Results</a> </span><span class="MenuMiddle"> </span><span class="MenuRight"> <a href="/Logout.jsp">Logout</a> </span> </div> </div> <form id="motionPage" name="motionPage" action=""> <div class="MotionHead"> You are logged in as <em class="DisplayName"></em>. <div style="display:none" id="backToBallots"> <a href="/Form/Member_votes.html">Return to Ballots</a> </div> </div> <br> <div id="motionBox"> <div id="motionListDraft"> <h2>Draft votes</h2> <div class="Info">This is only visible to voting organizers</div> <ul id="draftMotions" class="MotionList"> </ul></div> <div id="motionListFuture"> <h2>Upcoming votes</h2> <ul id="futureMotions" class="MotionList"> </ul></div> <div id="motionList"> <h2>Active votes</h2> <div class="EmptyList">There are no motions right now.</div> <ul id="motions" class="MotionList"> </ul></div> <div id="motionListPast"> <h2>Closed votes</h2> <ul id="pastMotions" class="MotionList"> </ul></div> </div> <div id="adminBox"> </div> <div id="questionBox"> <div id="questionList"> <h2 id="questionTitle"></h2> <div id="questionDescr"></div> <ul id="questions"> </ul></div> <div class="Functions"> <button id="submitVoteBtn" type="button">Submit vote(s)</button> </div> </div> </form> <div > <div id="loginDialog" title="Please login with your Academy of Europe account" style="display: none"> <div id="loginDialogMsg"></div> <form name="loginForm"> <fieldset> <label for="loginUsername">User name:</label> <input id="loginUsername" type="text" name="loginUsername"/> <br/> <label for="loginPassword">Password:</label> <input id="loginPassword" type="password" name="loginPassword"/> </fieldset> </form> </div> </div> </body> </html>