JulianPrieber c1110d4ced
Fixed dark mode for login/register...
This fixed the issue of dark mode not displaying on the register, login, forgot password and a few other pages.

This one took me a while to fix, and I still don't really know what is going on here.
The aforementioned pages already implemented a dark mode, but it didn't seem to work for me. After some testing, I discovered that the dark mode preset doesn't load on chromium based browsers. 

I have absolutely no idea why that is, if someone could help me with this that would be amazing. I might make an issue out of this later on.

As I still wanted to fix this, I finally achieved my goal by doing the caveman approach:

I first added the usual dark mode detection. The same used on the home and little link pages (see previous commits if you're interested).
Then I wrote and if statement that loads the newly added app-dark.css (see previous commit) that changes text and background color on the pages in question, if the browser type is chromium and dark mode is selected in the browser settings.

"@if(strpos($_SERVER['HTTP_USER_AGENT'], 'Chrome' !== false) and $color_scheme == 'dark')"

This doesn't look optimal, and I would rather just have the same dark mode as on Firefox, but this is the best I can currently do with my available time.
2022-02-21 23:34:07 +01:00
2022-02-14 12:47:57 +01:00
2021-04-16 03:30:00 +04:30
2022-02-14 12:52:24 +01:00
2022-02-21 23:18:38 +01:00
2022-02-21 20:11:25 +01:00
2022-02-14 13:12:46 +01:00
2022-02-14 13:13:49 +01:00
2022-02-20 19:19:05 +01:00
2021-04-16 03:30:00 +04:30
2022-02-20 22:43:11 +01:00
2021-04-16 03:30:00 +04:30
2021-04-16 03:30:00 +04:30
2022-02-21 19:56:34 +01:00
2021-04-16 03:30:00 +04:30
2021-04-16 03:30:00 +04:30
2021-04-16 03:30:00 +04:30
2022-02-14 13:09:33 +01:00
2021-04-16 03:30:00 +04:30
2021-04-16 03:30:00 +04:30
2021-05-22 18:52:24 +04:30
2021-07-06 15:41:44 +07:00
2022-02-14 13:06:58 +01:00
2022-02-18 09:17:51 +01:00
2022-02-14 13:08:37 +01:00
2021-05-22 19:11:12 +04:30
2021-04-16 03:30:00 +04:30
2021-04-16 03:30:00 +04:30
2022-02-12 19:42:16 +01:00
2022-02-14 13:07:38 +01:00
2022-02-14 13:26:42 +01:00
2021-04-16 03:30:00 +04:30
2022-02-14 13:10:09 +01:00
2022-02-14 13:28:19 +01:00

Forked from littlelink-admin

LittleLink Admin is an admin panel for littlelink that provides you a website similar linktree.

📑 Features

  • creating a link page with more than 20 buttons
  • raising important links on the page
  • button hover animations (new) | demo
  • ordering links (new)
  • custom link option (new)
  • Social Share Preview for individual users (new)
  • counting clicks
  • managing users and pages and links
  • and ...

🔨 Install

git clone https://github.com/JulianPrieber/littlelink-admin
cd littlelink-admin
cp .env.example .env
composer update -vvv
  • edit .env file
DB_DATABASE=YOUR_DB_NAME
DB_USERNAME=YOUR_DB_USER
DB_PASSWORD=YOUR_DB_PASS
APP_NAME="YOUR_APP_NAME"
  • run migration & db seed
php artisan migrate
php artisan db:seed 
(or commands below)
php artisan db:seed --class="AdminSeeder"
php artisan db:seed --class="PageSeeder"
php artisan db:seed --class="ButtonSeeder"

php artisan key:generate
php artisan serve (optional)
  • login:
email: admin@admin.com
password: 12345678

💞 Partners

🎲 Donate

@khashayarzavosh bitcoin: 1FQJWCZJoLKfJei7NFisTH65yNUjugJRi4

Description
LinkStack è una piattaforma per la gestione e la condivisione dei link online. Offre un sito web simile a Linktree, che consente agli utenti di superare la limitazione di poter aggiungere un solo link sulle piattaforme dei social media.
https://l.devol.it Readme AGPL-3.0 48 MiB
Languages
PHP 65.5%
Blade 34.5%