mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
369 B
12 lines
369 B
8 years ago
|
{{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>
|