[UseBook-Checkins] UseBook/templates/default admin.tpl.php,NONE,1.1
Status: Inactive
Brought to you by:
pc_freak
|
From: Vandamme S. <kid...@us...> - 2005-07-07 16:39:57
|
Update of /cvsroot/usebook/UseBook/templates/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8230/templates/default Added Files: admin.tpl.php Log Message: Initial Commit. --- NEW FILE: admin.tpl.php --- <?php /* Copyright (C) 2005 UseBook Team http://usebook.sourceforge.net $Header: /cvsroot/usebook/UseBook/templates/default/admin.tpl.php,v 1.1 2005/07/07 16:39:43 kidkiller Exp $ This file is part of UseBook. UseBook is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. UseBook is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with UseBook; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ // // Die when called directly in browser // if ( !defined('INCLUDED') ) exit(); // // Initialize a new template holder array // $templates = array(); // // Login // $templates['admin_login'] = ' <form method="POST" action="{location}"> <table class="maintable"> <tr> <th colspan=2>{l_Admin}</hr> </tr> <tr> <td>{l_Username}</td><td>{username}</td> </tr> <tr> <td>{l_Password}</td><td>{password}</td> </tr> <tr> <td colspan=2 class="formcontrols"><input type="submit" name="Submit" value="{l_Send}"> <input type="reset" value="{l_Reset}" /></td> </tr> </table> </form>'; ?> |