@@ -23,8 +23,15 @@ function SendRegistrationForm(el, user_id){
|
||||
data: formData,
|
||||
success: function(data){
|
||||
|
||||
document.getElementById('confirm_password').innerHTML = data.message
|
||||
document.querySelector('.info_text').classList.add('show')
|
||||
const confirmPasswordElement = document.getElementById('confirm_password');
|
||||
if (confirmPasswordElement) {
|
||||
confirmPasswordElement.innerHTML = data.message;
|
||||
}
|
||||
|
||||
const infoTextElement = document.querySelector('.info_text');
|
||||
if (infoTextElement) {
|
||||
infoTextElement.classList.add('show');
|
||||
}
|
||||
// location.href = `/profile/page/dashboard/`
|
||||
window.sessionStorage.removeItem('mailingSubscribeRequired')
|
||||
window.sessionStorage.removeItem('email')
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
</div>
|
||||
|
||||
<div class="social_media_footer">
|
||||
<a href="https://instagram.com/trip_with_bonus" target="_blank"><img class="svg" src="/static/img/svg/Instagram.svg"></a>
|
||||
<a href="https://instagram.com/tripwb_com" target="_blank"><img class="svg" src="/static/img/svg/Instagram.svg"></a>
|
||||
<a href="https://www.facebook.com/share/p/tckdLFiyXm9r2925/?mibextid=WC7FNe" target="_blank"><img class="svg" src="/static/img/svg/facebook.svg"></a>
|
||||
<a href="https://vk.com/club226251027" target="_blank"><img class="svg" src="/static/img/svg/vk.svg"></a>
|
||||
<a href="https://www.tiktok.com/@tripwithbonus?_t=8qHingfQWNq" target="_blank"><img class="svg" src="/static/img/svg/tiktok.svg"></a>
|
||||
|
||||
Reference in New Issue
Block a user