mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-01-19 09:04:58 +00:00
12 lines
369 B
HTML
12 lines
369 B
HTML
{{image}}{{hidden_field}}{{text_field}}
|
|
|
|
<script>
|
|
function refresh_captcha() {
|
|
$.getJSON("{% url "captcha-refresh" %}",
|
|
function (result) {
|
|
$('.captcha').attr('src', result['image_url']);
|
|
$('#id_captcha_0').val(result['key'])
|
|
})
|
|
}
|
|
$('.captcha').click(refresh_captcha)
|
|
</script> |