register.pt 584 Bytes
<html metal:use-macro="load: form_input.pt"
tal:define="home request._host;">

<div metal:fill-slot="scripts">
    <script tal:condition="${captcha}">
        $(document).ready(function () {
            $("#captcha").parent().prepend('<img style="height:30px; width:auto; margin-bottom:5px;'+
                    '" src="${home}/captcha/${captcha}.png">')

            $('#captcha').on('input', function (evt) {
                $(this).val(function (_, val) {
                    return val.toUpperCase();
                });
            });
        });
    </script>
</div>
</html>