パスワードをリセットする

新しいパスワードを設定してください

8文字以上

else { // Remove email and token from URL to prevent exposure in browser history window.history.replaceState({}, document.title, '/reset-password'); // Fetch CSRF token const csrfResponse = await fetch('/umbraco/api/membership/getcsrftoken', { credentials: 'include' }); const csrfData = await csrfResponse.json(); headers: { 'Content-Type': 'application/json', 'X-CSRF-Token': csrfData.token }, }