update
[squirrelmail.git] / src / webmail.php
CommitLineData
21c3249f 1<?
2 /**
a09387f4 3 ** webmail.php
21c3249f 4 **
5 ** This simply creates the frames.
6 **
7 **/
8
9 if(!isset($username)) {
10 echo "You need a valid user and password to access this page!";
11 exit;
12 }
13
14 setcookie("username", $username, 0, "/");
15 setcookie("key", $key, 0, "/");
16 setcookie("logged_in", 1, 0, "/");
17?>
18<HTML><HEAD>
19<TITLE>
20OM-USA WebMail
21</TITLE>
22<FRAMESET COLS="200, *" NORESIZE BORDER=0>
a09387f4 23 <FRAME SRC="left_main.php" NAME="left">
24 <FRAME SRC="right_main.php" NAME="right">
21c3249f 25</FRAMESET>
26</HEAD></HTML>