2 // expired.php - called by hive when the session has expired.
4 require('../../config.php');
10 //MW theres no easy way to log in seamlessly. We need the users unhashed password.
11 // It's a security risk to carry that in $SESSION so we put up login form.
13 notify('Your session has expired. Please log in again.');
15 <form action
="login.php" method
="post" id
="login">
16 <table border
="0" align
="center">
19 <table align
="center" class="loginform">
21 <td align
="right" class="c0">
22 <?php
print_string("username") ?
>:
25 <input type
="text" name
="username" size
="15" value
="<?php p($frm->username) ?>" alt
="<?php print_string("username
") ?>" />
29 <td align
="right" class="c0">
30 <?php
print_string("password") ?
>:
33 <input type
="password" name
="password" size
="15" value
="" alt
="<?php print_string("password
") ?>" />
39 <input type
="submit" value
="<?php print_string("login
") ?>" />
46 close_window_button();