bug fix (#7559)
[openemr.git] / library / custom_template / save_as.php
blobe1c3ab06e676b0d417df20802d833c3a318aca54
1 <?php
3 // +-----------------------------------------------------------------------------+
4 // Copyright (C) 2011 Z&H Consultancy Services Private Limited <sam@zhservices.com>
5 //
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License
9 // as published by the Free Software Foundation; either version 2
10 // of the License, or (at your option) any later version.
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
19 // A copy of the GNU General Public License is included along with this program:
20 // openemr/interface/login/GnuGPL.html
21 // For more information write to the Free Software
22 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 // Author: Eldho Chacko <eldho@zhservices.com>
25 // Jacob T Paul <jacob@zhservices.com>
27 // +------------------------------------------------------------------------------+
31 require_once("../../interface/globals.php");
33 use OpenEMR\Core\Header;
36 <html>
37 <head>
38 <?php Header::setupHeader(); ?>
39 </head>
40 <body class="body_top">
41 <form>
42 <table>
43 <tr class="text">
44 <td>
45 <input type="text" name="saveas" id="saveas">
46 </td>
47 <td>
48 <a href="#" class="btn btn-primary"><span><?php echo htmlspecialchars(xl('OK'), ENT_QUOTES);?></span></a>
49 </td>
50 </tr>
51 </table>
52 </form>
53 </body>
54 </html>