| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- @using Pulsa.Texts
- @using WebPortal.Models
- @using WebPortal.Controllers
- @using WebPortal.Extensions
- @using WebService
- @using Microsoft.AspNetCore.Http
- @{
- //wsLoginResponse userInfo = Context.Session.GetComplexData<wsLoginResponse>("userInfo");
- String msisdn = Context.Session.GetString("account");
- ViewBag.description = "Welcome to Telemor, your one-stop destination for telecom services in Timor-Leste.";
- }
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>Telemor</title>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta name="description" content="@ViewBag.description">
- <link rel="shortcut icon" href="~/image/favicon.png" type="image/png">
- <link rel="stylesheet" type="text/css" href="~/css/style.css">
- <link rel="stylesheet" type="text/css" href="~/css/bootstrap.min.css">
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
- <!-- Facebook Pixel Code -->
- <script>
- !function (f, b, e, v, n, t, s) {
- if (f.fbq) return; n = f.fbq = function () {
- n.callMethod ?
- n.callMethod.apply(n, arguments) : n.queue.push(arguments)
- };
- if (!f._fbq) f._fbq = n; n.push = n; n.loaded = !0; n.version = '2.0';
- n.queue = []; t = b.createElement(e); t.async = !0;
- t.src = v; s = b.getElementsByTagName(e)[0];
- s.parentNode.insertBefore(t, s)
- }(window, document, 'script',
- 'https://connect.facebook.net/en_US/fbevents.js');
- fbq('init', '599716718725696');
- fbq('track', 'PageView');
- </script>
- <noscript>
- <img height="1" width="1"
- src="https://www.facebook.com/tr?id=599716718725696&ev=PageView&noscript=1" alt="facebook" />
- </noscript>
- <!-- End Facebook Pixel Code -->
- <!-- Google tag (gtag.js) -->
- <script async src="https://www.googletagmanager.com/gtag/js?id=G-1KGFTZEBHZ"></script>
- <script>window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag('js', new Date()); gtag('config', 'G-1KGFTZEBHZ');</script>
- </head>
- <body>
- @Html.AntiForgeryToken()
- <header>
- <div class="container">
- <div class="main_nav">
- <div class="clearfix">
- <a href="https://telemor.tl/" class="d-inline-block logo"> <img src="~/image/logo.svg" alt="logo"> </a>
- </div>
- <div class="d-flex">
- @if (msisdn != null)
- {
- <a href="#" class="user-acc">
- @Lang.Hi, @msisdn.Substring(3)
- </a>
- }
- <div class="language">
- <div class="tool"><span class="mr-2" id="langLabel">EN</span> <img src="~/image/dot1.svg" alt="more"></div>
- <div class="sub-language">
- <ul class="sub_menu">
- <li>
- <a class="setLang" lang="en">
- EN
- </a>
- </li>
- <li>
- <a class="setLang" lang="fr">
- TL
- </a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- </div>
- </header>
- <input type="hidden" value="@msisdn" id="msisdn" />
- @RenderBody()
- <footer>
- <div class="container">
- <div class="copyright">
- <div class="row">
- <div class="col-md-4">
- <h5>@Lang.ContactUs</h5>
- <ul>
- <li>
- <img src="~/image/map.svg" class="mr-3" alt="map"> Viettel Timor, Unipessoal, Lda. CBD10, Timor Plaza, Dili, Timor-Leste
- </li>
- <li><img src="~/image/mail.svg " class="mr-3" alt="mail"> @Lang.Email: Info@telemor.tl</li>
- <li><img src="~/image/phone.svg " class="mr-3" alt="phone">@Lang.GeneralLine: +670 76188188</li>
- <li><img src="~/image/phone.svg " class="mr-3" alt="phone">@Lang.CustomerCareLine: 188</li>
- </ul>
- </div>
-
- </div>
- </div>
- <div class="ft-bottom">
- <div class="left">
- <span class="cl000 mr-3">@Lang.CopyRight</span>
-
- </div>
- <div class="social">
- <a href="https://www.facebook.com/telemor.tl" target="_blank" class="d-block mr-3" id="fb-link">
- <img src="~/image/facebook.svg" alt="facebook">
- </a>
- <a href="https://www.tiktok.com/@@telemortimorleste" target="_blank" class="d-block mr-3">
- <img src="~/image/tiktok.svg" alt="tiktok">
- </a>
- <a href="https://youtube.com/c/TelemorTimorleste" target="_blank" class="d-block mr-3">
- <img src="~/image/youtube.svg" alt="youtube">
- </a>
- <a href="https://api.whatsapp.com/send/?phone=67076188188&text&app_absent=0" target="_blank" class="d-block mr-3">
- <img src="~/image/whatsapp.svg " alt="whatsapp">
- </a>
- <a href="https://instagram.com/telemor_timorleste?igshid=YmMyMTA2M2Y=" target="_blank" class="d-block">
- <img src="~/image/instagram.svg" alt="instagram">
- </a>
- </div>
- </div>
- </div>
- </footer>
- @RenderSection("Scripts", required: false)
- </body>
- </html>
|