I don't mean to be rude, but asking people to "give" you code is not going to be very fruitful; I can assure you that most everyone on this list is too busy to write your code for you.
That being said, it sounds from your post like you need a better understanding of the core technologies. A login page involves almost exclusively server-side (ie. not Javascript/Mochikit) code. A login page would only involve JS/Mochikit if it had client-side validation (eg. if it ensured all passwords were at least five characters) or if it allowed the user to login without changing pages (this would be the point at which the login page becomes AJAXy). If you want to build an AJAXy login page, many of the Mochikit libraries will be valuable to you (Async for the AJAX stuff obviously, but also Base, DOM, Signal and probably Style too). But most of the work of creating a login page is going to have nothing to do with Mochikit (I've never created an AJAX login without creating a normal one first, and if you're practicing unobtrusive Javascript then you shouldn't either), and will instead depend entirely on your server stack (ie. Python/Django, Ruby/Rails, Any MS Language/.Net, Java/Seam, etc.). By the time you do eventually get around to coding the AJAX part, I imagine you'll have realized that there was no way anyone on this list could have provided you what you asked, because all of the implementation details are specific to your site. Jeremy On Mar 24, 12:04 am, sana <[EMAIL PROTECTED]> wrote: > Hi > Now i m learning about mochikit and i want to create a login page with > AJAX+Mochikit so anybody give me the code how i create it. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "MochiKit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/mochikit?hl=en -~----------~----~----~----~------~----~------~--~---
