@alkyilcycloalke you mean like the visibility of the text? Because the point is, those are the Blender Dumbass colors. The background is this washed out greyish bluesh thing. And the foreground it yellow. Why text looks quite good on this background. I can try black text. But I believe it will look crappy.
@alkyilcycloalke lol after all this time I ended up actually making a login system. Though I had to hack it into existence since I didn't plan for it at all. But it seems like it works.
If you are using Brave it should just work normally. Though you may need to press a little Tor button in the address bar for it to understand that you want a Tor window. I don't know why .onion links do not load automatically in Tor Window.
Also for almost every browser there is a Torification plugin. One I know is Tor Button. My dad uses it on Chromium to connect to this site. On his other computer he uses only Tor Browser for all browsing.
I don't think I will be able to make a clear-net link to this website in the near future since I host it directly from my computer and I have a shitty network ( including the router ).
There might be a good Tor to Web proxy where I could get a good static link. If I find one, I will start sharing it too. So far I didn't find one.
Wow, you responded quickly. Thank you for the information. Actually about a month ago I created an issue in the repository of a popular Tor proxy (Tor2Web): https://github.com/tor2web/Tor2web/issues/387
@Madiator2011 you have a point. But as of now I have no idea how to make a login password system like this without JS. Maybe you know. And yes, if I learn how, I will implement it myself here.
Spaghetti code! The insidious thing that often happens even to the best of us. No wander that it happened to me. When programming you want to break your code into functions that could be called from many other places. Doing everything as one large function is a problem, because sometimes you might want to do the same operation or the same check, or whatever, again in another place, and that will require you to copy paste large chunks of code. And if suddenly you decide to change something about those checks, or functions, you have to change that something in all those places one after another. Dani's Race my game, has a bit of a Spaghetti code problem.