❔ Sign up /Log in form
I need help creating a sign up form for my app. I understand the components, but still find it quite confusing.
It should be pretty simple, you can press login or sign up on the form. If you press log in, you type in you email and password but if those can't be found in my supabase database, then it shoudl return this does not exist. When pressing sign up, the user should be prompted to input an email, username and password to sign up with. trying to sign up with an exisiting email or username should not work.
I understand how the xaml to making the the sign up form, I mostly need help with database connections and the backend.
Git (to make viewing code easier) : https://github.com/AbuTar/Solaris
GitHub
GitHub - AbuTar/Solaris: A small-scale messaging app (Solaris)
A small-scale messaging app (Solaris). Contribute to AbuTar/Solaris development by creating an account on GitHub.
11 Replies
Overview of Entity Framework Core - EF Core
General introductory overview of Entity Framework Core
you should not use .NET framework
.NET core?
.NET 6 at least
.NET 6 is the current LTS release
I'm guessing best bet is to restart from scratch and maybe organise myself better
ie finish developing the backend and UI, rather than doing them at the same time
that's arguably good practice, for large projects
prototype, scrap, and rebuild, once you've learned better
Yh, I think I just need to keep going at it for a while and realise when restarting is the best move
lately, I have found that git is very poweful for empowering me to scrap and redo things
in the middle of a feature, when I suddenly have an idea for how to improve something I already made, that I'm using again?
shelve all my pending changes on a separate branch (fuck stashes) and just go ahead and do it right away
it's helped me achieve the same outcome as scrapping and rebuilding after an initial prototype, in a much more efficient way
if your main feature are in differents services you can reuse them
and if they are in your ui backend you can export them to services when you rebuild your app
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.