Merge pull request 'dev' (#25) from dev into main

Reviewed-on: #25
This commit is contained in:
2024-11-11 07:39:53 +03:00
2 changed files with 10 additions and 3 deletions

View File

@@ -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')

View File

@@ -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>