The Web Design Group

... Making the Web accessible to all.

Welcome Guest ( Log In | Register )

 
Reply to this topicStart new topic
> account creation?, (not sure if this is the right place to post)
sitebuilder
post Sep 18 2014, 05:04 PM
Post #1





Group: Members
Posts: 7
Joined: 18-September 14
Member No.: 21,563



ok, so basicly I'm making something thatll add a page to my page

so like

www.site.com/USERnamePASSpass

I'm going to advance on it later, but basicly the login button redirects you to site.com/USERusernameinputtedPASSpasswordhere..

but I want to make account creation, how would I achieve this?

is there an easy system for this or..?

(just started learnin, makin my own site tongue.gif)
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Christian J
post Sep 18 2014, 05:45 PM
Post #2


.
********

Group: WDG Moderators
Posts: 9,656
Joined: 10-August 06
Member No.: 7



QUOTE(sitebuilder @ Sep 19 2014, 12:04 AM) *

so like

www.site.com/USERnamePASSpass

I'm going to advance on it later, but basicly the login button redirects you to site.com/USERusernameinputtedPASSpasswordhere..

Not sure I understood that. Do you want the password to be visible in the URL?

QUOTE
but I want to make account creation, how would I achieve this?

That sounds like server side scripting (e.g. PHP) and maybe also a database (e.g. MySQL) for storing the account details.

QUOTE
is there an easy system for this or..?

For simple but reasonably effective password proterction, see: http://htmlhelp.com/faq/html/publish.html#password
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
sitebuilder
post Sep 18 2014, 05:48 PM
Post #3





Group: Members
Posts: 7
Joined: 18-September 14
Member No.: 21,563



QUOTE(Christian J @ Sep 18 2014, 05:45 PM) *

QUOTE(sitebuilder @ Sep 19 2014, 12:04 AM) *

so like

www.site.com/USERnamePASSpass

I'm going to advance on it later, but basicly the login button redirects you to site.com/USERusernameinputtedPASSpasswordhere..

Not sure I understood that. Do you want the password to be visible in the URL?

QUOTE
but I want to make account creation, how would I achieve this?

That sounds like server side scripting (e.g. PHP) and maybe also a database (e.g. MySQL) for storing the account details.

QUOTE
is there an easy system for this or..?

For simple but reasonably effective password proterction, see: http://htmlhelp.com/faq/html/publish.html#password


the code that logs you in:

<script type="text/javascript">

function CheckPassword() {
var username=document.login.username.value;
var password=document.login.password.value;
location.href = "USER12"+username + "PASS12"+ password+".html";
}
</script>

<form method="post" action="ingen_javascript.htm"
onsubmit="CheckPassword();return false;" name="login">
<pre>
Username: <input type="text" name="username">
Password: <input type="password" name="password">
</pre>
<input type="submit" value="log in"
onclick="CheckPassword();return false;">
</form>

</body>
</html>


I'm not sure how to make an account creation thing though, how would I achieve that?
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Christian J
post Sep 18 2014, 05:57 PM
Post #4


.
********

Group: WDG Moderators
Posts: 9,656
Joined: 10-August 06
Member No.: 7



You can't create accounts with javascript, you need a server side script for that.

What do you need the accounts for? Maybe there's a readymade script for that which already contains an account creation feature.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
sitebuilder
post Sep 18 2014, 06:00 PM
Post #5





Group: Members
Posts: 7
Joined: 18-September 14
Member No.: 21,563



QUOTE(Christian J @ Sep 18 2014, 05:57 PM) *

You can't create accounts with javascript, you need a server side script for that.

What do you need the accounts for? Maybe there's a readymade script for that which already contains an account creation feature.


well, in the long run, I plan to make a game creation site happy.gif

like, you sign up, you log in, you make games biggrin.gif

anyways, I've been looking up stuff on google, but I cant seem to find any script for it sad.gif

I guess I'll keep looking wacko.gif
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
sitebuilder
post Sep 18 2014, 06:24 PM
Post #6





Group: Members
Posts: 7
Joined: 18-September 14
Member No.: 21,563



QUOTE(sitebuilder @ Sep 18 2014, 06:00 PM) *

QUOTE(Christian J @ Sep 18 2014, 05:57 PM) *

You can't create accounts with javascript, you need a server side script for that.

What do you need the accounts for? Maybe there's a readymade script for that which already contains an account creation feature.


well, in the long run, I plan to make a game creation site happy.gif

like, you sign up, you log in, you make games biggrin.gif

anyways, I've been looking up stuff on google, but I cant seem to find any script for it sad.gif

I guess I'll keep looking wacko.gif



Well, I'm completely lost...................
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
sitebuilder
post Sep 18 2014, 06:43 PM
Post #7





Group: Members
Posts: 7
Joined: 18-September 14
Member No.: 21,563



gah, I am so lost wacko.gif sad.gif sad.gif sad.gif sad.gif sad.gif sad.gif
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Sep 19 2014, 04:00 AM
Post #8


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,730
Joined: 9-August 06
Member No.: 6



Well, as Christian said you need server side scripting. You may find something already written at for example http://hotscripts.com .

You need a sever side solution for the login also if you want any kind of security. If you find a ready script that part will be included.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post

Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



- Lo-Fi Version Time is now: 23rd April 2024 - 04:48 PM