Beginnings of the options menu
[squirrelmail.git] / src / options.php
1 <?
2 include("../config/config.php");
3 include("../functions/mailbox.php");
4 include("../functions/strings.php");
5 include("../functions/page_header.php");
6 include("../functions/display_messages.php");
7 include("../functions/imap.php");
8 include("../functions/array.php");
9 include("../functions/prefs.php");
10
11 echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
12 displayPageHeader($color, "None");
13
14 echo "<TABLE WIDTH=100% COLS=1 ALIGN=CENTER>\n";
15 echo " <TR><TD BGCOLOR=\"$color[0]\" ALIGN=CENTER>\n";
16 echo " <FONT FACE=\"Arial,Helvetica\">Options</FONT>\n";
17 echo " </TD></TR>\n";
18 echo "</TABLE>\n";
19
20 echo getPref($username, "full_name");
21
22 echo "</BODY></HTML>";
23 ?>