const btnLoginPage = document.querySelector('.btn-login'); const btnUserProfile = document.querySelector('.btn-userProfile'); const btnLogout = document.querySelector('.btn-logout'); function getCookie(name) { const value = `; ${document.cookie}`; const parts = value.split(`; ${name}=`); if (parts.length === 2) return parts.pop().split(';').shift(); } let userBasics = JSON.parse(localStorage.getItem('user_profile')) || []; function checkLocal() { if(userBasics.length == 0){ return }; $('.userName').html(`
User Profile
//${userInfo.user_info.userName}
//${userInfo.user_info.email}
//已使用
//${userInfo.user_info.total_sec}秒
//未使用
//${userInfo.user_info.left_sec}秒
//User Profile
${userInfo.user_info.userName}
${userInfo.user_info.email}
已使用
${userInfo.user_info.total_sec}秒
未使用
${userInfo.user_info.left_sec}秒
標題 | 編輯 |
---|
您有2分鐘影片製作額度。
您可以使用:
欲使用其他功能請升級為Premium方案
`, icon: 'success', confirmButtonColor: '#3085d6', confirmButtonText: '我知道了!' }); } function trialEnd() { Swal.fire({ title: '您的試用即將結束!好的idea值得延續,透過影片將你的idea完整呈現。', html: `前往網站以升級為Premium方案,或是聯絡我們以洽詢細節。
`, icon: 'success', confirmButtonColor: '#3085d6', confirmButtonText: '立即升級' }).then(result => { if (result.isConfirmed) { location.href = "pricing.html"; } });; }