make assembly report warning blinky

This commit is contained in:
Gwendolyn 2023-12-27 17:15:29 +01:00
parent 439adc0078
commit de0f087668
2 changed files with 28 additions and 3 deletions

View file

@ -1368,3 +1368,19 @@ button + button {
table td select:last-child {
margin-bottom: 0;
}
@keyframes blinking {
0%, 49% {
color: #4000ff;
}
50%, 100% {
color: #d900ff;
}
}
blink {
animation-name: blinking;
animation-iteration-count: infinite;
animation-timing-function: cubic-bezier(.5, 0, 1, 1);
animation-duration: 1.7s;
}

View file

@ -10,9 +10,18 @@
{% csrf_token %}
{% include 'site/fragment_report_meta.html' %}
{{ form.as_p }}
<p><input type="checkbox" required="required" style="margin-bottom: 0"> {% blocktrans trimmed %}I understand that if i report an issue related to an assembly,
all that will happen is that i owe each member on the c3nav team one bottle of mate.
I can avoid this by contacting the assembly team, which will actually be able to fix my issue.{% endblocktrans %}</p>
<p>
<input type="checkbox" required="required" style="margin-bottom: 0" />
<blink>
<strong>
{% blocktrans trimmed %}
I understand that if I report an issue related to an assembly,
all that will happen is that I owe each member on the c3nav team one bottle of mate.
I can avoid this by contacting the assembly team, which will actually be able to fix my issue.
{% endblocktrans %}
</strong>
</blink>
</p>
<button type="submit">{% trans 'Submit' %}</button>
</form>
</main>