PNG  IHDRxsBIT|d pHYs+tEXtSoftwarewww.inkscape.org<,tEXtComment File Manager

File Manager

Path: /home/u264723324/domains/oceanictrusts.com/.trash/dash/

Viewing File: settings.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Settings - Oceanictrusts</title>
    <style>
        /* Shared CSS Boilerplate */
        :root {
            --bg-dark: #0a0e17; --surface-dark: #131a2a; --surface-light: #1e2738;
            --accent-blue: #0ea5e9; --accent-yellow: #facc15; --text-main: #f8fafc;
            --text-muted: #94a3b8; --danger: #ef4444; --success: #22c55e;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; -webkit-tap-highlight-color: transparent; }
        body { background-color: var(--bg-dark); color: var(--text-main); }
        .app-container { display: flex; flex-direction: column; min-height: 100vh; }
        .sidebar { display: none; }
        .main-content { flex: 1; padding: 20px; padding-bottom: 90px; overflow-x: hidden; }
        
        /* Header */
        .top-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
        .back-btn { background: none; border: none; color: var(--text-main); font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--surface-dark); transition: 0.2s;}
        .back-btn:active { transform: scale(0.95); }
        .page-title { font-size: 1.5rem; font-weight: 700; }

        /* Settings Card */
        .section-header { font-size: 1rem; font-weight: 600; color: var(--accent-blue); margin-bottom: 12px; margin-top: 24px; text-transform: uppercase; letter-spacing: 0.5px;}
        .settings-card { background: var(--surface-dark); border-radius: 16px; padding: 0 16px; border: 1px solid rgba(255,255,255,0.05); margin-bottom: 16px; }
        .setting-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .setting-row.clickable { cursor: pointer; transition: 0.2s; }
        .setting-row.clickable:active { opacity: 0.7; }
        .setting-row:last-child { border-bottom: none; }
        
        .setting-info { display: flex; align-items: center; gap: 16px; }
        .setting-icon { font-size: 1.2rem; width: 36px; height: 36px; background: var(--surface-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
        .setting-text h4 { font-size: 0.95rem; margin-bottom: 4px; font-weight: 500;}
        .setting-text p { font-size: 0.75rem; color: var(--text-muted); }
        
        /* Toggle Switch */
        .toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
        .toggle-switch input { opacity: 0; width: 0; height: 0; }
        .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(255,255,255,0.1); transition: .4s; border-radius: 34px; }
        .slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
        input:checked + .slider { background-color: var(--success); }
        input:checked + .slider:before { transform: translateX(20px); }

        /* Danger Zone */
        .danger-text { color: var(--danger) !important; }
        .danger-icon { color: var(--danger) !important; background: rgba(239, 68, 68, 0.1) !important;}

        /* Select Input Override */
        select.form-input { appearance: none; background: transparent; border: none; color: var(--text-muted); font-size: 0.9rem; outline: none; text-align: right; cursor: pointer;}
        select.form-input option { background: var(--surface-dark); color: var(--text-main); }

        /* Toast Notification */
        .toast { position: fixed; top: -100px; left: 50%; transform: translateX(-50%); background: var(--success); color: white; padding: 12px 24px; border-radius: 30px; font-size: 0.9rem; font-weight: 600; box-shadow: 0 4px 12px rgba(0,0,0,0.3); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 2000; }
        .toast.show { top: 40px; }

        /* Bottom Nav */
        .bottom-nav { position: fixed; bottom: 0; width: 100%; background: rgba(19, 26, 42, 0.95); backdrop-filter: blur(10px); display: flex; justify-content: space-around; padding: 12px 0 24px 0; border-top: 1px solid rgba(255,255,255,0.05); z-index: 100; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-muted); text-decoration: none; font-size: 0.7rem; gap: 4px; }
        .nav-item.active { color: var(--accent-blue); }

        /* Desktop Media Query */
        @media (min-width: 1024px) {
            .app-container { flex-direction: row; }
            .bottom-nav { display: none; }
            .sidebar { display: flex; flex-direction: column; width: 260px; background: var(--surface-dark); border-right: 1px solid rgba(255,255,255,0.05); padding: 32px 24px; height: 100vh; position: sticky; top: 0; }
            .sidebar .logo { font-size: 1.5rem; font-weight: bold; margin-bottom: 48px; color: var(--accent-blue); }
            .side-nav { display: flex; flex-direction: column; gap: 12px; }
            .side-nav a { color: var(--text-muted); text-decoration: none; padding: 12px 16px; border-radius: 12px; transition: 0.2s; display: flex; align-items: center; gap: 12px; }
            .side-nav a:hover, .side-nav a.active { background: rgba(14, 165, 233, 0.1); color: var(--accent-blue); }
            .main-content { padding: 40px 60px; max-width: 800px; margin: 0 auto; }
            .back-btn { display: none; } /* Hide back button on desktop since sidebar is persistent */
        }
    </style>
</head>
<body>

<div id="toast" class="toast">Action Successful!</div>

<div class="app-container">
    <aside class="sidebar">
        <div class="logo">Oceanictrusts</div>
        <nav class="side-nav">
            <a href="index.php"><span>🏠</span> Home</a>
            <a href="activity.php"><span>📊</span> Activity</a>
            <a href="transfer.php"><span>💸</span> Transfer</a>
            <a href="cards.php"><span>💳</span> Cards</a>
            <a href="profile.php" class="active"><span>👤</span> Profile</a>
        </nav>
    </aside>

    <main class="main-content">
        <header class="top-header">
            <button class="back-btn" onclick="window.location.href='profile.php'">←</button>
            <h1 class="page-title">Settings</h1>
        </header>

        <h3 class="section-header">Security</h3>
        <div class="settings-card">
            <div class="setting-row clickable" onclick="showToast('Password Change Email Sent')">
                <div class="setting-info">
                    <div class="setting-icon">🔑</div>
                    <div class="setting-text">
                        <h4>Change Password</h4>
                        <p>Last changed 3 months ago</p>
                    </div>
                </div>
                <span style="color: var(--text-muted);">→</span>
            </div>
            
            <div class="setting-row">
                <div class="setting-info">
                    <div class="setting-icon">📱</div>
                    <div class="setting-text">
                        <h4>Two-Factor Auth (2FA)</h4>
                        <p>Secure account with an Authenticator App</p>
                    </div>
                </div>
                <label class="toggle-switch">
                    <input type="checkbox" checked onchange="showToast(this.checked ? '2FA Enabled' : '2FA Disabled. Not Recommended.')">
                    <span class="slider"></span>
                </label>
            </div>

            <div class="setting-row">
                <div class="setting-info">
                    <div class="setting-icon">👆</div>
                    <div class="setting-text">
                        <h4>Biometric Login</h4>
                        <p>Use FaceID / TouchID to log in</p>
                    </div>
                </div>
                <label class="toggle-switch">
                    <input type="checkbox" onchange="showToast(this.checked ? 'Biometrics Enabled' : 'Biometrics Disabled')">
                    <span class="slider"></span>
                </label>
            </div>
        </div>

        <h3 class="section-header">Preferences</h3>
        <div class="settings-card">
            <div class="setting-row">
                <div class="setting-info">
                    <div class="setting-icon">💵</div>
                    <div class="setting-text">
                        <h4>Display Currency</h4>
                        <p>Primary currency for dashboard</p>
                    </div>
                </div>
                <select class="form-input" onchange="showToast('Currency updated to ' + this.value)">
                    <option value="USD" selected>USD ($)</option>
                    <option value="EUR">EUR (€)</option>
                    <option value="GBP">GBP (£)</option>
                </select>
            </div>
            
            <div class="setting-row">
                <div class="setting-info">
                    <div class="setting-icon">🌐</div>
                    <div class="setting-text">
                        <h4>Language</h4>
                        <p>App interface language</p>
                    </div>
                </div>
                <select class="form-input" onchange="showToast('Language updated to ' + this.options[this.selectedIndex].text)">
                    <option value="en" selected>English</option>
                    <option value="es">Español</option>
                    <option value="fr">Français</option>
                </select>
            </div>
        </div>

        <h3 class="section-header">Notifications</h3>
        <div class="settings-card">
            <div class="setting-row">
                <div class="setting-info">
                    <div class="setting-icon">✉️</div>
                    <div class="setting-text">
                        <h4>Email Alerts</h4>
                        <p>Receive transaction receipts via email</p>
                    </div>
                </div>
                <label class="toggle-switch">
                    <input type="checkbox" checked onchange="showToast('Email preferences saved')">
                    <span class="slider"></span>
                </label>
            </div>
            <div class="setting-row">
                <div class="setting-info">
                    <div class="setting-icon">🔔</div>
                    <div class="setting-text">
                        <h4>Push Notifications</h4>
                        <p>Get instant alerts on your device</p>
                    </div>
                </div>
                <label class="toggle-switch">
                    <input type="checkbox" checked onchange="showToast('Push preferences saved')">
                    <span class="slider"></span>
                </label>
            </div>
        </div>

        <h3 class="section-header">Active Sessions</h3>
        <div class="settings-card">
            <div class="setting-row">
                <div class="setting-info">
                    <div class="setting-icon" style="color: var(--success); background: rgba(34, 197, 94, 0.1);">💻</div>
                    <div class="setting-text">
                        <h4>Mac OS Safari</h4>
                        <p>Current Session • New York, USA</p>
                    </div>
                </div>
            </div>
            <div class="setting-row clickable" onclick="showToast('Device connection revoked')">
                <div class="setting-info">
                    <div class="setting-icon">📱</div>
                    <div class="setting-text">
                        <h4>iPhone 15 Pro</h4>
                        <p>Active 2 days ago • Lagos, NG</p>
                    </div>
                </div>
                <span style="color: var(--danger); font-size: 0.8rem; font-weight: 600;">Revoke</span>
            </div>
        </div>

        <h3 class="section-header" style="color: var(--danger);">Danger Zone</h3>
        <div class="settings-card">
            <div class="setting-row clickable" onclick="showToast('Contacting support for account closure...')">
                <div class="setting-info">
                    <div class="setting-icon danger-icon">⚠️</div>
                    <div class="setting-text">
                        <h4 class="danger-text">Deactivate Account</h4>
                        <p>Permanently close your Oceanictrusts account</p>
                    </div>
                </div>
                <span class="danger-text">→</span>
            </div>
        </div>

    </main>

    <nav class="bottom-nav">
        <a href="activity.php" class="nav-item"><span class="nav-icon">📊</span>Activity</a>
        <a href="transfer.php" class="nav-item"><span class="nav-icon">💸</span>Transfer</a>
        <a href="index.php" class="nav-item"><span class="nav-icon">🏠</span>Home</a>
        <a href="cards.php" class="nav-item"><span class="nav-icon">💳</span>Cards</a>
        <a href="profile.php" class="nav-item active"><span class="nav-icon">👤</span>Profile</a>
    </nav>
</div>

<script>
    function showToast(message) {
        const toast = document.getElementById('toast');
        toast.textContent = message;
        toast.classList.add('show');
        setTimeout(() => { toast.classList.remove('show'); }, 3000);
    }
</script>
</body>
</html>
b IDATxytVսϓ22 A@IR :hCiZ[v*E:WũZA ^dQeQ @ !jZ'>gsV仿$|?g)&x-EIENT ;@xT.i%-X}SvS5.r/UHz^_$-W"w)Ɗ/@Z &IoX P$K}JzX:;` &, ŋui,e6mX ԵrKb1ԗ)DADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADA݀!I*]R;I2$eZ#ORZSrr6mteffu*((Pu'v{DIߔ4^pIm'77WEEE;vƎ4-$]'RI{\I&G :IHJ DWBB=\WR޽m o$K(V9ABB.}jѢv`^?IOȅ} ڶmG}T#FJ`56$-ھ}FI&v;0(h;Б38CӧOWf!;A i:F_m9s&|q%=#wZprrrla A &P\\СC[A#! {olF} `E2}MK/vV)i{4BffV\|ۭX`b@kɶ@%i$K z5zhmX[IXZ` 'b%$r5M4º/l ԃߖxhʔ)[@=} K6IM}^5k㏷݆z ΗÿO:gdGBmyT/@+Vɶ纽z񕏵l.y޴it뭷zV0[Y^>Wsqs}\/@$(T7f.InݺiR$푔n.~?H))\ZRW'Mo~v Ov6oԃxz! S,&xm/yɞԟ?'uaSѽb,8GלKboi&3t7Y,)JJ c[nzӳdE&KsZLӄ I?@&%ӟ۶mSMMњ0iؐSZ,|J+N ~,0A0!5%Q-YQQa3}$_vVrf9f?S8`zDADADADADADADADADAdqP,تmMmg1V?rSI꒟]u|l RCyEf٢9 jURbztѰ!m5~tGj2DhG*{H9)꒟ר3:(+3\?/;TUݭʴ~S6lڧUJ*i$d(#=Yݺd{,p|3B))q:vN0Y.jkק6;SɶVzHJJЀ-utѹսk>QUU\޲~]fFnK?&ߡ5b=z9)^|u_k-[y%ZNU6 7Mi:]ۦtk[n X(e6Bb."8cۭ|~teuuw|ήI-5"~Uk;ZicEmN/:]M> cQ^uiƞ??Ңpc#TUU3UakNwA`:Y_V-8.KKfRitv޲* 9S6ֿj,ՃNOMߤ]z^fOh|<>@Å5 _/Iu?{SY4hK/2]4%it5q]GGe2%iR| W&f*^]??vq[LgE_3f}Fxu~}qd-ږFxu~I N>\;͗O֊:̗WJ@BhW=y|GgwܷH_NY?)Tdi'?խwhlmQi !SUUsw4kӺe4rfxu-[nHtMFj}H_u~w>)oV}(T'ebʒv3_[+vn@Ȭ\S}ot}w=kHFnxg S 0eޢm~l}uqZfFoZuuEg `zt~? b;t%>WTkķh[2eG8LIWx,^\thrl^Ϊ{=dž<}qV@ ⠨Wy^LF_>0UkDuʫuCs$)Iv:IK;6ֲ4{^6եm+l3>݆uM 9u?>Zc }g~qhKwڭeFMM~pМuqǿz6Tb@8@Y|jx](^]gf}M"tG -w.@vOqh~/HII`S[l.6nØXL9vUcOoB\xoǤ'T&IǍQw_wpv[kmO{w~>#=P1Pɞa-we:iǏlHo׈꒟f9SzH?+shk%Fs:qVhqY`jvO'ρ?PyX3lх]˾uV{ݞ]1,MzYNW~̈́ joYn}ȚF߾׮mS]F z+EDxm/d{F{-W-4wY듏:??_gPf ^3ecg ҵs8R2מz@TANGj)}CNi/R~}c:5{!ZHӋӾ6}T]G]7W6^n 9*,YqOZj:P?Q DFL|?-^.Ɵ7}fFh׶xe2Pscz1&5\cn[=Vn[ĶE鎀uˌd3GII k;lNmشOuuRVfBE]ۣeӶu :X-[(er4~LHi6:Ѻ@ԅrST0trk%$Č0ez" *z"T/X9|8.C5Feg}CQ%͞ˣJvL/?j^h&9xF`њZ(&yF&Iݻfg#W;3^{Wo^4'vV[[K';+mӍִ]AC@W?1^{එyh +^]fm~iԵ]AB@WTk̏t uR?l.OIHiYyԶ]Aˀ7c:q}ힽaf6Z~қm(+sK4{^6}T*UUu]n.:kx{:2 _m=sAߤU@?Z-Vކеz왍Nэ{|5 pڶn b p-@sPg]0G7fy-M{GCF'%{4`=$-Ge\ eU:m+Zt'WjO!OAF@ik&t݆ϥ_ e}=]"Wz_.͜E3leWFih|t-wZۍ-uw=6YN{6|} |*={Ѽn.S.z1zjۻTH]흾 DuDvmvK.`V]yY~sI@t?/ϓ. m&["+P?MzovVЫG3-GRR[(!!\_,^%?v@ҵő m`Y)tem8GMx.))A]Y i`ViW`?^~!S#^+ѽGZj?Vģ0.))A꨷lzL*]OXrY`DBBLOj{-MH'ii-ϰ ok7^ )쭡b]UXSְmռY|5*cֽk0B7镹%ڽP#8nȎq}mJr23_>lE5$iwui+ H~F`IjƵ@q \ @#qG0".0" l`„.0! ,AQHN6qzkKJ#o;`Xv2>,tێJJ7Z/*A .@fفjMzkg @TvZH3Zxu6Ra'%O?/dQ5xYkU]Rֽkق@DaS^RSּ5|BeHNN͘p HvcYcC5:y #`οb;z2.!kr}gUWkyZn=f Pvsn3p~;4p˚=ē~NmI] ¾ 0lH[_L hsh_ғߤc_њec)g7VIZ5yrgk̞W#IjӪv>՞y睝M8[|]\շ8M6%|@PZڨI-m>=k='aiRo-x?>Q.}`Ȏ:Wsmu u > .@,&;+!!˱tﭧDQwRW\vF\~Q7>spYw$%A~;~}6¾ g&if_=j,v+UL1(tWake:@Ș>j$Gq2t7S?vL|]u/ .(0E6Mk6hiۺzښOrifޱxm/Gx> Lal%%~{lBsR4*}{0Z/tNIɚpV^#Lf:u@k#RSu =S^ZyuR/.@n&΃z~B=0eg뺆#,Þ[B/?H uUf7y Wy}Bwegל`Wh(||`l`.;Ws?V@"c:iɍL֯PGv6zctM̠':wuW;d=;EveD}9J@B(0iհ bvP1{\P&G7D޴Iy_$-Qjm~Yrr&]CDv%bh|Yzni_ˆR;kg}nJOIIwyuL}{ЌNj}:+3Y?:WJ/N+Rzd=hb;dj͒suݔ@NKMԄ jqzC5@y°hL m;*5ezᕏ=ep XL n?מ:r`۵tŤZ|1v`V뽧_csج'ߤ%oTuumk%%%h)uy]Nk[n 'b2 l.=͜E%gf$[c;s:V-͞WߤWh-j7]4=F-X]>ZLSi[Y*We;Zan(ӇW|e(HNNP5[= r4tP &0<pc#`vTNV GFqvTi*Tyam$ߏWyE*VJKMTfFw>'$-ؽ.Ho.8c"@DADADADADADADADADA~j*֘,N;Pi3599h=goضLgiJ5փy~}&Zd9p֚ e:|hL``b/d9p? fgg+%%hMgXosج, ΩOl0Zh=xdjLmhݻoO[g_l,8a]٭+ӧ0$I]c]:粹:Teꢢ"5a^Kgh,&= =՟^߶“ߢE ܹS J}I%:8 IDAT~,9/ʃPW'Mo}zNƍ쨓zPbNZ~^z=4mswg;5 Y~SVMRXUյڱRf?s:w ;6H:ºi5-maM&O3;1IKeamZh͛7+##v+c ~u~ca]GnF'ټL~PPPbn voC4R,ӟgg %hq}@#M4IÇ Oy^xMZx ) yOw@HkN˖-Sǎmb]X@n+i͖!++K3gd\$mt$^YfJ\8PRF)77Wא!Cl$i:@@_oG I{$# 8磌ŋ91A (Im7֭>}ߴJq7ޗt^ -[ԩSj*}%]&' -ɓ'ꫯVzzvB#;a 7@GxI{j޼ƌ.LÇWBB7`O"I$/@R @eee@۷>}0,ɒ2$53Xs|cS~rpTYYY} kHc %&k.], @ADADADADADADADADA@lT<%''*Lo^={رc5h %$+CnܸQ3fҥK}vUVVs9G R,_{xˇ3o߾;TTTd}馛]uuuG~iԩ@4bnvmvfϞ /Peeeq}}za I~,誫{UWW뮻}_~YƍSMMMYχ֝waw\ďcxꩧtEƍկ_?۷5@u?1kNׯWzz/wy>}zj3 k(ٺuq_Zvf̘:~ ABQ&r|!%KҥKgԞ={<_X-z !CyFUUz~ ABQIIIjݺW$UXXDٳZ~ ABQƍecW$<(~<RSSvZujjjԧOZQu@4 8m&&&jԩg$ď1h ͟?_{768@g =@`)))5o6m3)ѣƌJ;wҿUTT /KZR{~a=@0o<*狔iFɶ[ˎ;T]]OX@?K.ۈxN pppppppppppppppppPfl߾] ,{ァk۶mڿo5BTӦMӴiӴ|r DB2e|An!Dy'tkΝ[A $***t5' "!駟oaDnΝ:t֭[gDШQ06qD;@ x M6v(PiizmZ4ew"@̴ixf [~-Fٱc&IZ2|n!?$@{[HTɏ#@hȎI# _m(F /6Z3z'\r,r!;w2Z3j=~GY7"I$iI.p_"?pN`y DD?: _  Gÿab7J !Bx@0 Bo cG@`1C[@0G @`0C_u V1 aCX>W ` | `!<S `"<. `#c`?cAC4 ?c p#~@0?:08&_MQ1J h#?/`7;I  q 7a wQ A 1 Hp !#<8/#@1Ul7=S=K.4Z?E_$i@!1!E4?`P_  @Bă10#: "aU,xbFY1 [n|n #'vEH:`xb #vD4Y hi.i&EΖv#O H4IŶ}:Ikh @tZRF#(tXҙzZ ?I3l7q@õ|ۍ1,GpuY Ꮿ@hJv#xxk$ v#9 5 }_$c S#=+"K{F*m7`#%H:NRSp6I?sIՖ{Ap$I$I:QRv2$Z @UJ*$]<FO4IENDB`