Browse Subversion Repository
Contents of /index.php
Parent Directory
| Revision Log
Revision 28 -
( show annotations)
( download)
( as text)
Fri May 2 16:57:11 2008 UTC
(16 years, 1 month ago)
by ktym9814
File MIME type: application/x-httpd-php
File size: 455 byte(s)
Classによるメール表示まで完了
| 1 |
<?php |
| 2 |
require_once("functions/header.php"); |
| 3 |
require_once("config.inc"); |
| 4 |
print_header(); |
| 5 |
?> |
| 6 |
<body> |
| 7 |
<form action="webmail.php" method="POST"> |
| 8 |
<h2><?php echo get_word('login_page') ?></h2> |
| 9 |
<ul> |
| 10 |
<li><?php echo get_word('login_id') ?> |
| 11 |
<input type="text" name="username"></li> |
| 12 |
<li><?php echo get_word('login_pass') ?> |
| 13 |
<input type="password" name="password"></li> |
| 14 |
<input type="submit" value="<?php echo get_word('login_button')?>"> |
| 15 |
</form> |
| 16 |
</ul> |
| 17 |
</body> |
| 18 |
</html> |
|