- Added new webapplication called WebWolf to make attacks more realistic - Added WebWolf lesson to explain the concepts behind this new application
10 lines
265 B
JavaScript
10 lines
265 B
JavaScript
$(document).ready(function() {
|
|
$('#login').click(function(e) {
|
|
e.preventDefault();
|
|
$('div#form-login').toggle('500');
|
|
});
|
|
$('#forgot').click(function(e) {
|
|
e.preventDefault();
|
|
$('div#form-login').toggle('500');
|
|
});
|
|
}); |