forked from kadavr95/php-practice-6
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotification.php
More file actions
27 lines (27 loc) · 1.31 KB
/
notification.php
File metadata and controls
27 lines (27 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!-- <div id="notification">
<div class="information">
You are using beta version of the site. Some functions and content may be unavailable. Open old version of the site?
</div>
<div class="information-choice">
<a href="https://sites.google.com/site/diminiinc/">Yes</a>
<a href="javascript:void(0)" onclick="localStorage.setItem('notify_close', 'yes');hideNotification('notification'); return false;">No</a>
</div>
</div> -->
<div id="language-notification">
<div class="information">
Хотите сменить язык сайта?
</div>
<div class="information-choice">
<a href="javascript:void(0)" onclick="showLanguageChoice('language-choice'); return false;">Да</a>
<a href="javascript:void(0)" onclick="replaceLocale();hideNotification('language-notification'); return false;">Нет</a>
</div>
</div>
<div id="sticky-footer">
<div class="information">
By using this site you agree to <a href="/en/terms-and-privacy" class="information-link-not-button">User agreement and Privacy policy</a>.
</div>
<div class="information-choice">
<a href="javascript:void(0)" onclick="localStorage.setItem('cookie_close', 'yes');var siteHeight = document.getElementById('site');
siteHeight.style.height = siteHeight.offsetHeight-55+'px';hideNotification('sticky-footer'); return false;">I understand</a>
</div>
</div>