{% extends "base.html" %} {% block title %}Seal — result{% endblock %} {% block content %} {% set kind = 'ok' if outcome == 'admin_match' else ('warn' if outcome in ['welcome', 'no_watermark'] else 'err') %}
{% if outcome == 'admin_match' %}
admin verified

welcome back, {{ name }}.

the board recognized your signature. here's what you reserved for yourself:

{{ flag }}
{% elif outcome == 'welcome' %}
identified

welcome, {{ name }}.

your clip is on the board. thanks for signing in.

{% elif outcome == 'no_file' %}
!

no file

please attach a video file and try again.

{% elif outcome == 'bad_ext' %}
!

unsupported format

only .mp4, .mov, and .webm are accepted.

{% elif outcome == 'too_big' %}
!

too large

uploads are capped at 30 MB.

{% elif outcome == 'bounds' %}
!

out of bounds

videos must be at most 6 seconds long and 480p or smaller.

{% elif outcome == 'unreadable' %}
!

could not read your video

the upload failed to decode (or the analysis timed out). try a different file.

{% elif outcome == 'no_watermark' %}
?

no signature detected

we could not verify who uploaded this. anonymous posts are not accepted on this board.

{% else %}
!

something went wrong

{% endif %}
{% endblock %}