Blame view

public/js/passport/reset-success.page.js 260 Bytes
郭成尧 authored
1 2 3 4 5
const $ = require('yoho-jquery');

let reLoginBtn = $('#reLogin');

reLoginBtn.on('click', function() {
郭成尧 authored
6
    window.location.href = '/signin.html';
郭成尧 authored
7 8 9 10
});

$(function() {
    setTimeout(function() {
郭成尧 authored
11
        window.location.href = '/signin.html';
郭成尧 authored
12 13
    }, 3000);
});