How to make a modal AJAX login box with Mootools
Saturday, 13. October 2007, 17:49:48
It's basically what you can do in JavaScript with alert() but with different functionality: If you do alert('foo'), you get a box with text "foo" that you must close before doing anything else. This kind of dialogs are called modal dialogs.
In this post I'll show you how to make a modal login box that can work nicely even in browsers without proper JavaScript support. This is quite easy with the proper tools.
For this article, you will just need to know some HTML and JavaScript.
For this script, I decided to use Mootools. Mootools is a lightweight JavaScript library, similar to Scriptaculous and Prototype. The reason I chose Mootools over my usual tool Scriptaculous is that I wanted to experiment with other libraries as well.
We could use Mootools itself to create our dialog box, but we can make it even easier for us by using MOOdalbox. MOOdalbox is a script for making nice modal dialog boxes and it's based on Mootools.
Start!
First, you need to download MOOdalbox. The archive comes with both MOOdalbox and Mootools, so you won't need to download them separately. Just unzip the files to where you will be putting the rest of your files related to this.
Next, let's make a simple HTML page with a link to our login page, and the login form.
Laying out the HTML
We need some page to act as the "portal" to our login area, so let's make a simple page with a link to it. We need to remember ot include the MOOdalbox scripts and styles to it, too.
<html> <head> <title>MOOdalbox example</title> <link rel="stylesheet" type="text/css" href="css/moodalbox.css" /> <script type="text/javascript" src="js/mootools.js"></script> <script type="text/javascript" src="js/moodalbox.js"></script> </head> <body> This page will link to the login page<br /> <a href="login.html">Log in</a> </body> </html>
This does not use any JavaScript yet, but we will get to that part soon. Now, let's create the login box code.
<form action="login.php" method="post"> Login <input type="text" name="login" /><br /> Pass <input type="password" name="pass" /><br /> <input type="submit" value="Log in" /> </form>
And save that as login.html. We won't add the html and other tags to this one because it will be included with AJAX to the main page, but if it's like this, we can also use it with a browser that does not have JavaScript.
Now you have a login function on your page. I won't go into details of setting up the actual log in procedure, just how to make the modal box.
Adding the magic
So how do we go about making our login box appear like an alert box?
Simple! We add a rel attribute to the link, like this:
<a href="login.html" rel="moodalbox">Log in</a>
If you click your Log in link now, you get a nice modal dialog which displays login.html.
Easy, huh?








PimpyT # 14. October 2007, 18:03
zomg # 14. October 2007, 20:27
Anonymous # 2. November 2007, 07:33
1, this tut sucked man, download moodalbox and how to make a form in html?
2, you security code ( excuse for a capthcha ) --> is really useless..
$file = file_get_contents('http://my.opera.com/zomg/blog/2007/10/13/how-to-make-a-modal-ajax-login-box-with-mootools');
//echo $file.' ';
preg_match_all('# (.*) #isU',$file,$out);
foreach($out[1] as $connect){$next .= $connect;};
preg_match_all('#:(.*)
zomg # 2. November 2007, 10:54
What comes to the security code, I don't think it's useless.
Whoever would want to bypass the code would have to know that they need to look for the span element. I don't think all spambots contain code to "look for a span, it contains the security code"
And no it's not mine. It's something which is shown automatically by My Opera if you're an anonymous commenter.
Anonymous # 8. November 2007, 17:56
Demo ?!
r4zv4n # 19. November 2007, 21:35
I've mentioned your tutorial on the official MOOdalBox blog to bring more people to it.
More people should do what you did - i.e. write simple, bitesize tutorials, as a jumpoff point to a better knowledge of web design / development.
In the meantime, I'll set up a demo page on my web server and post back with a link
Anonymous # 23. November 2007, 16:57
anonymous user number 2 is stupid. ignore him it was a great tut thanx
zomg # 24. November 2007, 04:23
Anonymous # 11. January 2008, 17:50
Any code on how to handle error in login. for example if one types the wrong username, upon submit, the error notice will not be in the moodalbox. the entire page is reloaded.
thx
Anonymous # 13. January 2008, 11:06
how could I show some google map in this nice MoodalBox?
It loads a googlemap.html wthout any error but nothing is shown?
Any idea therefor?
Anonymous # 4. April 2008, 22:01
This is an awesome tutorial.. I was just wondering if there was anyway to make the login box appear over flash .swf files? thanks
zomg # 5. April 2008, 11:55
Anonymous # 22. July 2008, 21:19
how can i move the position of the moodal box ??
vhanla # 28. July 2008, 22:49
Anonymous # 11. August 2008, 19:47
MoodalBox is broken for IE7 :(
Anonymous # 2. October 2008, 23:41
emm.. i got problen on do dis...
it shows me this error..
(new Ajax(this.href, ajaxOptions)).request is not a function
how to fix this?
Anonymous # 4. October 2008, 19:35
the link you provided crashed my browser.
Anonymous # 7. October 2008, 23:08
There's a different modal box version based on litebox, and it display google maps as well as flash content:
http://www.dolem.com/lytebox/demo.php
Anonymous # 16. November 2008, 16:51
I probably have the most dumbest question, but please forgive me since I am a complete nubie. I downloaded the files and installed them but when I click on the link it starts showing the loading window but then shows the html page full page and not in the popup. Do I need to have my hosting company do something?
Anonymous # 16. March 2009, 11:59
t
Anonymous # 16. March 2009, 12:00
the download link does not work, where can i download the .js and .ccc files??
thanks
Anonymous # 16. March 2009, 12:30
you have made all this but you can not even make a link work, what a load of crap..!
Anonymous # 13. April 2009, 01:35
Hi there, i have a question about the moodalbox...
so using the login example, when the modal box pops up and i click on the login button, obviously the modal box will close and login the user. HOw do i make the parent page (the background page) refresh itself?
thank u very much for ur help
Anonymous # 30. April 2009, 09:08
Demo?
Anonymous # 30. April 2009, 09:08
Demo?
Anonymous # 17. September 2009, 12:01
dears:
can any one tell me how can i make modal box appears at the page loading without needing to click a link
thank u for your help