Skip to main content
3 answers
3
Asked 1250 views

Coding a Log In/Sign Up

Is there an easier way to code a log in without using PHP? I don't want a set log in. #computer-science #computer-software #coding #computer-networking

+25 Karma if successful
From: You
To: Friend
Subject: Career question for you

3

3 answers


1
Updated
Share a link to this answer
Share a link to this answer

Richie’s Answer

If you use Google's App Engine to build you application, you can use the App Engine APIs to handle logins.'


Here is an example in Python.


App engine Login


Hope this helps.


...richie

Thank you comment icon Thank You that was very helpful Diana
1
0
Updated
Share a link to this answer
Share a link to this answer

John’s Answer

The first question I have to ask is: "how sensitive is the data you're protecting"? Speaking as a Cyber Security professional, the potential damage from someone breaking in should determine how hard you have to work on your login code.


That said, coding login is rarely trivial. The easiest way if you have ftp/ssh access to the folders you want to protect is to use an .htaccess file. Check out http://www.htaccess-guide.com/


Another option is to use some pre-built code that implements OAuth. https://oauth.net/articles/authentication/


There are still other options, like Google's App Engine, as mentioned in the other answer. A web search should help you find some.


Hope this helps.

0
0
Updated
Share a link to this answer
Share a link to this answer

Wes’s Answer

This might help: https://www.makeuseof.com/python-login-page-simple-build/
0