diff --git a/site/login/login/access-denied.php b/site/login/login/access-denied.php new file mode 100644 index 00000000..10103ae7 --- /dev/null +++ b/site/login/login/access-denied.php @@ -0,0 +1,14 @@ + + + + +Access Denied + + + +

Access Denied

+

 

+

Access Denied!
+ You do not have access to this resource.

+ + diff --git a/site/login/login/auth.php b/site/login/login/auth.php new file mode 100644 index 00000000..d2c4e577 --- /dev/null +++ b/site/login/login/auth.php @@ -0,0 +1,10 @@ + \ No newline at end of file diff --git a/site/login/login/connect.php b/site/login/login/connect.php new file mode 100644 index 00000000..d259b16d --- /dev/null +++ b/site/login/login/connect.php @@ -0,0 +1,15 @@ + \ No newline at end of file diff --git a/site/login/login/downloads.php b/site/login/login/downloads.php new file mode 100644 index 00000000..ce09304d --- /dev/null +++ b/site/login/login/downloads.php @@ -0,0 +1,2 @@ + +

Get your copy of Mibew 1.6.1 at Download Here \ No newline at end of file diff --git a/site/login/login/features.php b/site/login/login/features.php new file mode 100644 index 00000000..9eba079e --- /dev/null +++ b/site/login/login/features.php @@ -0,0 +1 @@ +

Version 1.6.0 Released

We are pleased to announce the immediate availability of 1.6.0. This is a major release with new features and improvements.

* operator groups
* pre-chat survey
* statistics
* canned messages
* new operator console
\ No newline at end of file diff --git a/site/login/login/index.php b/site/login/login/index.php new file mode 100644 index 00000000..c0e249c3 --- /dev/null +++ b/site/login/login/index.php @@ -0,0 +1,28 @@ + + + + +Login Form + + + +

 

+
+ + + + + + + + + + + + + +
Login
Password
 
+

+
Not a Member? Click Here
+ + diff --git a/site/login/login/libs/config.php b/site/login/login/libs/config.php new file mode 100644 index 00000000..7a9bbf7c --- /dev/null +++ b/site/login/login/libs/config.php @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/site/login/login/libs/login.js b/site/login/login/libs/login.js new file mode 100644 index 00000000..e2c8b523 --- /dev/null +++ b/site/login/login/libs/login.js @@ -0,0 +1,17 @@ + \ No newline at end of file diff --git a/site/login/login/libs/loginmodule.css b/site/login/login/libs/loginmodule.css new file mode 100644 index 00000000..e6e6d399 --- /dev/null +++ b/site/login/login/libs/loginmodule.css @@ -0,0 +1,34 @@ +body { + font: 11px Verdana, Arial, Helvetica, sans-serif; + color: #666666; + margin: 0px; + padding: 20px 10px 0px; +} +.textfield { + font-size: 11px; + color: #333333; + background: #F7F7F7; + border: 1px solid #CCCCCC; + padding-left: 1px; +} +h1 { + color: #99CC00; + margin: 0px 0px 5px; + padding: 0px 0px 3px; + font: bold 18px Verdana, Arial, Helvetica, sans-serif; + border-bottom: 1px dashed #E6E8ED; +} +a { + color: #2D3954; + font-size: 11px; +} +a:hover { + color: #99CC00; +} +.err { + color: #FF9900; +} +th { + font-weight: bold; + text-align: left; +} diff --git a/site/login/login/libs/menu.php b/site/login/login/libs/menu.php new file mode 100644 index 00000000..9d6f3fb8 --- /dev/null +++ b/site/login/login/libs/menu.php @@ -0,0 +1,12 @@ + + + + +Member's Page + + + +

Welcome

+My Profile |Payware| Downloads| Features | +Ticket Support |Logout +

\ No newline at end of file diff --git a/site/login/login/login-exec.php b/site/login/login/login-exec.php new file mode 100644 index 00000000..9b628813 --- /dev/null +++ b/site/login/login/login-exec.php @@ -0,0 +1,81 @@ + \ No newline at end of file diff --git a/site/login/login/login-failed.php b/site/login/login/login-failed.php new file mode 100644 index 00000000..606d2a4a --- /dev/null +++ b/site/login/login/login-failed.php @@ -0,0 +1,14 @@ + + + + +Login Failed + + + +

Login Failed

+

 

+

Login Failed!
+ Please check your username and password

+ + diff --git a/site/login/login/logout.php b/site/login/login/logout.php new file mode 100644 index 00000000..5bff72b5 --- /dev/null +++ b/site/login/login/logout.php @@ -0,0 +1,23 @@ + + + + + +Logged Out + + + +

Logout

+

 

+

You have been logged out.

+

Click here to Login

+ + diff --git a/site/login/login/member-index.php b/site/login/login/member-index.php new file mode 100644 index 00000000..f17a062f --- /dev/null +++ b/site/login/login/member-index.php @@ -0,0 +1,9 @@ + + +

This is a password protected area only accessible to members.

+

This is also where you can get the current news, downloads, and more!

+ + diff --git a/site/login/login/member-profile.php b/site/login/login/member-profile.php new file mode 100644 index 00000000..c22b167f --- /dev/null +++ b/site/login/login/member-profile.php @@ -0,0 +1,8 @@ + + +

Under Construction

+ + diff --git a/site/login/login/mysql.sql b/site/login/login/mysql.sql new file mode 100644 index 00000000..9f93447f --- /dev/null +++ b/site/login/login/mysql.sql @@ -0,0 +1,20 @@ +# +# Table structure for table 'members' +# + +CREATE TABLE `members` ( + `member_id` int(11) unsigned NOT NULL auto_increment, + `firstname` varchar(100) default NULL, + `lastname` varchar(100) default NULL, + `login` varchar(100) NOT NULL default '', + `passwd` varchar(32) NOT NULL default '', + PRIMARY KEY (`member_id`) +) TYPE=MyISAM; + + + +# +# Dumping data for table 'members' +# + +INSERT INTO `members` (`member_id`, `firstname`, `lastname`, `login`, `passwd`) VALUES("1", "Jatinder", "Thind", "phpsense", "ba018360fc26e0cc2e929b8e071f052d"); diff --git a/site/login/login/news.xml b/site/login/login/news.xml new file mode 100644 index 00000000..da276d87 --- /dev/null +++ b/site/login/login/news.xml @@ -0,0 +1,6 @@ +Open Web Messenger Forums +
+Visit our new forums page. +

+Open Web Messenger 1.5.1 Update +
Version 1.5.1 is released! Get your copy at Source Forge \ No newline at end of file diff --git a/site/login/login/owiupdate.xml b/site/login/login/owiupdate.xml new file mode 100644 index 00000000..10a782f5 --- /dev/null +++ b/site/login/login/owiupdate.xml @@ -0,0 +1,28 @@ + + + + Open Web Messenger + http://openwebim.org/webim.xml + Updates On WebIM + en + + Version 1.0 + + http://openwebim.org/owiupdate.html + + Wed, 09 Jan 2006 19:20:11 +0000 + + + + + + + Version 1.4 (5 bugs fixed; 2 new features) + + http://you.com/app/1.4.html + + Wed, 25 Dec 2005 12:20:11 +0000 + + + + \ No newline at end of file diff --git a/site/login/login/payware.php b/site/login/login/payware.php new file mode 100644 index 00000000..2b3dbc53 --- /dev/null +++ b/site/login/login/payware.php @@ -0,0 +1,4 @@ + + +

Mibew Hosting

+
This will be $50/month.
\ No newline at end of file diff --git a/site/login/login/register-exec.php b/site/login/login/register-exec.php new file mode 100644 index 00000000..3c58f7fd --- /dev/null +++ b/site/login/login/register-exec.php @@ -0,0 +1,110 @@ + 0) { + $errmsg_arr[] = 'Login ID already in use'; + $errflag = true; + } + @mysql_free_result($result); + } + else { + die("Query failed"); + } + } + + + //If there are input validations, redirect back to the registration form + if($errflag) { + $_SESSION['ERRMSG_ARR'] = $errmsg_arr; + session_write_close(); + header("location: register-form.php"); + exit(); + } + + //Create INSERT query + $qry = "INSERT INTO members(firstname, lastname, email, login, passwd) VALUES('$fname','$lname', '$email', '$login','".md5($_POST['password'])."')"; + $result = @mysql_query($qry); + + //Check whether the query was successful or not + if($result) { + header("location: register-success.php"); + exit(); + }else { + die("Query failed"); + } +?> \ No newline at end of file diff --git a/site/login/login/register-form.php b/site/login/login/register-form.php new file mode 100644 index 00000000..5d3bceb2 --- /dev/null +++ b/site/login/login/register-form.php @@ -0,0 +1,59 @@ + + + + + +Login Form + + + +0 ) { + echo '