forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-31 16:05:03 -06:00
parent 5507adb4ac
commit 55e4ea3216
1 changed files with 73 additions and 75 deletions

View File

@ -34,13 +34,11 @@
<h5>Vote Info</h5>
<form action="/admin/alt_votes" method="get" class="p-5 flex flex-col rounded-md bg-gray-300 dark:bg-gray-700 shadow-inset-t-white-10 border border-gray-400 dark:border-gray-900">
<div class="p-4 md:p-5 flex flex-col space-y-6 rounded-md bg-gray-300 dark:bg-gray-700 shadow-inset-t-white-10 border border-gray-400 dark:border-gray-900">
<form action="/admin/alt_votes" method="get">
<label class="label">
Usernames
</label>
<small class="block text-gray-400">
Enter two usernames you suspect of voter fraud.
</small>
<div class="w-full flex space-x-2 items-center">
<input id="link-input" type="text" class="form-input" name="u1" value="{{u1.username if u1 else ''}}" placeholder="User #1" required>
<input id="link-input" type="text" class="form-input" name="u2" value="{{u2.username if u2 else ''}}" placeholder="User #2" oninput="document.getElementById('analysis-btn').disabled=false" required>
@ -108,6 +106,6 @@
{% endif %}
{% endif %}
</div>
</div>
{% endblock %}