JSK_Mechta/generate-ballots/index.html
2025-09-16 01:35:28 +03:00

36 lines
905 B
HTML

<head>
<meta charset="utf-8">
<title>ЖСК Мечта - генерация бюллетеней</title>
<link rel="stylesheet" href="style.css"/>
<script src="scripts/lib/csv.js"></script>
<script src="scripts/lib/jszip.min.js"></script>
<script src="scripts/create-ballots.js" type="module"></script>
</head>
<body>
<br>
<br>
<label for="registry_file">Реестр собственников, .csv</label>
<br>
<input type="file" id="registry_file" />
<br>
<br>
<label for="template_file">Шаблон бюллетеня, .docx</label>
<br>
<input type="file" id="template_file" />
<br>
<br>
<button id="create_ballots_btn">
Сгенерировать бюллетени
</button>
<br>
<progress class="hidden" id="progressbar"> </progress>
<br>
<textarea readonly id="output_text"> </textarea>
</body>