Post Reply Post Thread 
FTP login for your visitors!
AuthorMessage
le tunisien
Moderator
*****


Posts: 1,630
Group: Moderators
Joined: May 2006
Status: Offline
Reputation: 6
Post: #1
Cool  FTP login for your visitors!

if you want that the visitors and members of your site acces your FTP and upload/ download stuff from your site , put This Login Box in your site here is th HTML code to paste in your page:

Code:
<center>
<form name=login>
<table width=250 border=1 cellpadding=3><tr>
<td colspan=2 align=center>
<b><h2>Logon to FTP Server!</h2></b>
</td>
</tr><tr><td>Username:</td><td>
<input type=text name=username size=20>
</td></tr><tr><td>Password:</td><td>
<input type=password name=password size=20>
</td></tr><tr><td>Server:</td><td><tt>ftp://</tt>
<input type=text name=server size=14>
</td></tr><tr>
<td colspan=2 align=center>
<input type=button value="Login!" onClick="Login(this.form)">
</td></tr></table></form>
</center>
<SCRIPT LANGUAGE="JavaScript">
//submitted and displayed on www.a1javascripts.com
//by Spencer Ressad. http://www.fl5goscript2001.homestead.com
<!-- Begin
function Login(form) {
var username = form.username.value;var password = form.password.value;
var server = form.server.value;
if (username && password && server) {
var ftpsite = "ftp://" + username + ":" + password + "@" + server;
window.location = ftpsite;
}
else {alert("Please enter your username, password, and FTP server's address.");
   }
}
//  End -->
</script>

Enjoy homies...

09-30-2007 08:12 PM
Visit this user's websiteFind all posts by this user Quote this message in a reply
Post Reply Post Thread 

View a Printable Version
Send this Thread to a Friend
Subscribe to this Thread | Add Thread to Favorites

Google