Use fadeIn/fadeOut for password reset page for nicer look

This commit is contained in:
snipe 2021-01-26 20:05:01 -08:00
parent d14b1e3825
commit d19c6ab8e7

View file

@ -96,13 +96,13 @@
<script nonce="{{ csrf_token() }}"> <script nonce="{{ csrf_token() }}">
$(document).ready(function () { $(document).ready(function () {
$("#show").click(function(){ $("#show").click(function(){
$("#help-text").show(); $("#help-text").fadeIn(500);
$("#show").hide(); $("#show").hide();
$("#hide").show(); $("#hide").show();
}); });
$("#hide").click(function(){ $("#hide").click(function(){
$("#help-text").hide(); $("#help-text").fadeOut(300);
$("#show").show(); $("#show").show();
$("#hide").hide(); $("#hide").hide();
}); });