Changeset 075185a in Klonkt for src/views/pages/account.ejs


Ignore:
Timestamp:
06/24/2026 02:16:57 PM (3 months ago)
Author:
Robin Genis <roboburr@…>
Branches:
main
Children:
2e9773f
Parents:
5b47619
Message:

refactor(auth): remove Google login (listeners now interact via the fediverse)

Removes config/google.js, the /auth/google* routes, the admin Google config page
+ links, the account link/unlink, and the public Google login button. /login and
/auth/admin both show the admin password form. SEO/Search-Console Google is
untouched. (Native comments removed next.)

Co-Authored-By: Claude <noreply@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/views/pages/account.ejs

    r5b47619 r075185a  
    163163  </section>
    164164
    165   <% if (typeof googleAvailable !== 'undefined' && googleAvailable) { %>
    166   <section class="ax-card">
    167     <div class="ax-card-title"><%= t('acct.google_login') %></div>
    168     <% if (typeof googleLinked !== 'undefined' && googleLinked) { %>
    169       <p class="ax-tagline" style="margin:0 0 1rem"><%= t('acct.google_linked') %></p>
    170       <form action="/account/google/unlink" method="post">
    171         <button type="submit" class="ax-btn"><%= t('acct.google_unlink') %></button>
    172       </form>
    173     <% } else { %>
    174       <p class="ax-tagline" style="margin:0 0 1rem"><%= t('acct.google_link_hint') %></p>
    175       <a href="/auth/google/link" class="ax-btn ax-btn-primary" data-full-load><%= t('acct.google_link') %></a>
    176     <% } %>
    177   </section>
    178   <% } %>
    179165  <% } else { %>
    180166  <section class="ax-card">
Note: See TracChangeset for help on using the changeset viewer.