Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 12-10-2012, 08:23 PM   PM User | #1
Jian0203
New Coder

 
Join Date: Mar 2012
Posts: 47
Thanks: 2
Thanked 0 Times in 0 Posts
Jian0203 is an unknown quantity at this point
Web-based Authentication System

Hi, I'm sorry if I ask the question below at the wrong place ~

I am asked to develop a Web-based Graphical Password Authentication System. Graphical Password Authentication System is a system that allow users to login with pictures combination or other scheme rather than texture password. Is there any system vulnerabilities if i use javascript ?

I am new to web-based programming. This is my first project to develop a web-based authentication system. I am wondering should i use javascript at the client side? Is it the proper programming language ?

How about server side ? I thinking i will choose either php or MySQL but more people use ASP.net now, right ?

Sorry for asking such a "noob" question. I appreciate all the suggestion and reminder from everyone.

Thank you so much for helping ^^
Jian0203 is offline   Reply With Quote
Old 12-10-2012, 08:35 PM   PM User | #2
WolfShade
Regular Coder

 
Join Date: Apr 2012
Location: St. Louis, MO, USA
Posts: 952
Thanks: 7
Thanked 98 Times in 98 Posts
WolfShade is an unknown quantity at this point
Don't attempt doing this in pure JavaScript. You'll need a server-side language like ASP, PHP, JSP, ColdFusion, etc.

JavaScript might be useful in some fashion, though. Just not sure how.
__________________
^_^

If anyone knows of a website that can offer ColdFusion help that isn't controlled by neurotic, pedantic jerks* (stackoverflow.com), please PM me with a link.
*
The neurotic, pedantic jerks are not the owners; just the people who are in control of the "popularity contest".
WolfShade is offline   Reply With Quote
Old 12-10-2012, 09:32 PM   PM User | #3
AndrewGSW
Senior Coder

 
Join Date: Apr 2011
Location: London, England
Posts: 2,120
Thanks: 15
Thanked 354 Times in 353 Posts
AndrewGSW will become famous soon enough
Quote:
JavaScript might be useful in some fashion, though. Just not sure how.
JavaScript or, more specifically, ajax is sometimes used with (image) captchas to verify them without reloading the page. But the bulk of the OPs task shouts server-side.

PHP and MySql are free, and easy to get up and running using XAMPP (WAMP or LAMP). You can even publish the site at limited, or even no, cost.

ASP.Net can be created and tested using (free) Microsoft Studio Express but to publish requires a host with IIServer. I don't know if any of these exist for free, or limited, cost??

They are quite different though..

This assumes, of course, that you are already comfortable with HTML and CSS (and possibly some JavaScript).
__________________
"I'm here to save your life. But if I'm going to do that, I'll need total uninanonynymity." Me Myself & Irene.
Validate your HTML and CSS

Last edited by AndrewGSW; 12-10-2012 at 09:39 PM..
AndrewGSW is offline   Reply With Quote
Old 12-10-2012, 09:50 PM   PM User | #4
WolfShade
Regular Coder

 
Join Date: Apr 2012
Location: St. Louis, MO, USA
Posts: 952
Thanks: 7
Thanked 98 Times in 98 Posts
WolfShade is an unknown quantity at this point
I have never worked with an Apache server, before. I installed XAMPP on my WinXP machine, at home, and still don't fully understand it. But, yeah, it's free.

Conversely, you can download and install the fully-functional Developer Edition of ColdFusion Server. You can set it up for Apache, IIS, or use CF's built-in web server.
__________________
^_^

If anyone knows of a website that can offer ColdFusion help that isn't controlled by neurotic, pedantic jerks* (stackoverflow.com), please PM me with a link.
*
The neurotic, pedantic jerks are not the owners; just the people who are in control of the "popularity contest".
WolfShade is offline   Reply With Quote
Old 12-12-2012, 06:06 PM   PM User | #5
Jian0203
New Coder

 
Join Date: Mar 2012
Posts: 47
Thanks: 2
Thanked 0 Times in 0 Posts
Jian0203 is an unknown quantity at this point
Thanks for the help.

Erm, just want to ask. Is there any designer tools for html and css ?

For example, in Java programming, we have NetBean to design the program user interface.
Jian0203 is offline   Reply With Quote
Old 12-12-2012, 07:23 PM   PM User | #6
WolfShade
Regular Coder

 
Join Date: Apr 2012
Location: St. Louis, MO, USA
Posts: 952
Thanks: 7
Thanked 98 Times in 98 Posts
WolfShade is an unknown quantity at this point
Couple of options. I use DreamWeaver for all of my development coding. It does have a "Design View" that can help. Alternatively, you can use PhotoShop or Fireworks (or another similar application) to graphically design the site, then "slice" the image appropriately for HTML.
__________________
^_^

If anyone knows of a website that can offer ColdFusion help that isn't controlled by neurotic, pedantic jerks* (stackoverflow.com), please PM me with a link.
*
The neurotic, pedantic jerks are not the owners; just the people who are in control of the "popularity contest".
WolfShade is offline   Reply With Quote
Old 12-12-2012, 07:52 PM   PM User | #7
rnd me
Senior Coder

 
rnd me's Avatar
 
Join Date: Jun 2007
Location: Urbana
Posts: 3,469
Thanks: 9
Thanked 466 Times in 450 Posts
rnd me is a jewel in the roughrnd me is a jewel in the roughrnd me is a jewel in the rough
or use jQuery UI, ext, YUI, dojo, or any of the many UI-have libs out there.

if you are coming from java, you might like YUI and DOJO the most.
__________________
my site (updated 5/13)
STATS (2013/5) HTML5:90.2% MOB:14% IE7:0.5% IE8:8.6% IE9:9.8% IE10:10%
rnd me is offline   Reply With Quote
Old 12-12-2012, 08:21 PM   PM User | #8
AndrewGSW
Senior Coder

 
Join Date: Apr 2011
Location: London, England
Posts: 2,120
Thanks: 15
Thanked 354 Times in 353 Posts
AndrewGSW will become famous soon enough
Quote:
Is there any designer tools for html and css ?
Visual Studio Express for Web has most of the features of DreamWeaver and doesn't cost anything

You can ignore the ASP aspects and just use File/New File. Switch between Design and Source (code) with the buttons at the bottom (or Preview in Browser). Added: There's an Internal Browser so we can preview in a tab.
Attached Thumbnails
Click image for larger version

Name:	visualweb.png
Views:	9
Size:	35.0 KB
ID:	11795   Click image for larger version

Name:	visualweb2.png
Views:	8
Size:	23.4 KB
ID:	11796  
__________________
"I'm here to save your life. But if I'm going to do that, I'll need total uninanonynymity." Me Myself & Irene.
Validate your HTML and CSS

Last edited by AndrewGSW; 12-12-2012 at 08:44 PM..
AndrewGSW is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 10:40 PM.


Advertisement
Log in to turn off these ads.