All Questions
Tagged with authentication beginner
35 questions
3
votes
1
answer
124
views
Type-state pattern and state management for credentials struct used with Spotify web API
I am implementing authentication with the Spotify web API as part of a larger project. Yes I know there are already crates that can handle it for me but that is no fun. I am implementing the auth code ...
2
votes
2
answers
9k
views
Login and Register program
This is my first program i write after i finished the c++ tutorials, that program can login and register,
the program ask the user to choice login or register after user choice and write his username ...
1
vote
3
answers
4k
views
Account signup/login program in Python
This is my first program that I wrote on my own. Is there something I can improve upon?
There are a few things that still need to be added, such as:
Confirm password while registering
Adding a way to ...
6
votes
1
answer
168
views
Basic login system with 2 factor authentication
What I try to achieve
I need to create a administration-panel for a website. Therefore, I need a possibility to protect the content of the panel via a password. The functionality doesn't have to be ...
5
votes
3
answers
1k
views
Login function with Python and SQLite
I'm a new programmer who is currently working on a personal project. It is supposed to be a login program which stores user data in a SQLite database.
I was wondering if anyone could look at my code ...
3
votes
2
answers
4k
views
Codeigniter 3 Registration and Login System
I am working on a basic blog application in Codeigniter 3.1.8 and Bootstrap 4.
The application allows Registration and Login. I have concerns about the security level of the Registration system I ...
5
votes
1
answer
51
views
User creation and sign-in script
I made code for signing in users and storing data about them. Everything is fully encrypted and secure also, it is meant to be imported into other code. I'm looking for ways to improve it and to fix ...
2
votes
1
answer
223
views
Implementation of login and registration functions in servlet filter
I'm a newbie in servlet API. I have a test task to create a very simple web app with one home page and an authorization form. The requirement is to use filter somewhere in my app.
Given that it's a ...
6
votes
1
answer
296
views
Password Hashing and SQL Queries
I am new to web development and am working on a portfolio piece, so I would like to make sure I'm not creating obvious vulnerabilities. I am wondering whether there are any clear flaws in the ...
5
votes
1
answer
202
views
PHP - First Login System
I am quite new to PHP, and with the help of a few tutorials have made this login system.
However I know its not as efficient and compact as it could be, also I am looking for ways to improve the ...
10
votes
5
answers
143k
views
Python username and password program
Can the following code be simplified? I think that the program that I have created is very excessive and quite slow. The program runs fine, but I would like to understand if this could actually be ...
4
votes
2
answers
649
views
Angular Guards - Firebase loggedInAndVerified
I have an app that I want to limit to both logged in and verified users. I was able to make two separate guards (logged-in.guard.ts and ...
4
votes
3
answers
405
views
Simple log-in to system
I am fairly new to the MVC paradigm and I am working with Swing at the moment. To test my understanding of MVC, I have written this simple program used to login in to a system. I was hoping someone ...
4
votes
2
answers
2k
views
PHP OOP Login Script
I'm new to both PHP and OOP and would like some constructive feedback on a class I made.
I have a "main account" login system already setup and working; when the user logs in they're presented with a ...
5
votes
1
answer
300
views
Very basic PHP session handling
I’ve got my first real PHP web application up and running. It is working as expected, but being my first time, I’m sure there is plenty of room for improvement.
Right now, there is one particular ...