[Mydatabasepilot-cvs] MyDatabasePilot index.cfm,1.1.1.1,1.2
Status: Alpha
Brought to you by:
nanoface
From: <nan...@us...> - 2003-04-13 03:06:44
|
Update of /cvsroot/mydatabasepilot/MyDatabasePilot In directory sc8-pr-cvs1:/tmp/cvs-serv7931 Modified Files: index.cfm Log Message: Changed to do list Index: index.cfm =================================================================== RCS file: /cvsroot/mydatabasepilot/MyDatabasePilot/index.cfm,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** index.cfm 23 Mar 2003 03:44:23 -0000 1.1.1.1 --- index.cfm 13 Apr 2003 03:06:35 -0000 1.2 *************** *** 1,45 **** ! <!---******************************************************************************************* ! * Copyright: MyDatabase Pilot is distributed under the terms of the GNU GPL license * ! * Template: index.cfm * ! * Purpose: Initial Database Login page. * ! * You can either log into a database using a form or by clicking * ! * "Default Database" you are automatically connected to the default * ! * database defined in the Application.cfm template. * ! * Requiremets In order to use the "Default Database" feature, the database connection * ! * variables must be configured in the Aplication.cfm file * ! * Todo: -Enhance the look and feel of the form using tables and CSS * ! * -List Available Databases * ! * Known Issues/Bugs: * ! ********************************************************************************************---> ! ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> ! <html> ! <head> ! <title><cfoutput>#applicationName# #applicationVersion#</cfoutput></title> ! <link rel="STYLESHEET" type="text/css" href="Styles/master.css"> ! </head> ! <body> ! <cfinclude template="Include/Header.cfm"> ! <table width="100%" border="0" cellspacing="2" cellpadding="0"> ! <tr><td class="ToDo">ToDo: List Available Databases</td></tr> ! <tr><td class="Warning">Warning: This software is currently under development. It is currently in Alpha release. Which means it is not fully tested and could be unstable.</td></tr> ! <tr> ! <td> ! <p class="Plain">You can either login to a database by completing the form below, or if you have configured the Application.cfm file for a default database, you can <a href="MyDatabasePilot.cfm">USE DEFAULT DATABASE</a>.</p> ! <!--- Initiate a Read Only lock to ensure the integrity of session variables ---> ! <cflock timeout = "30" throwontimeout="no" type = "readonly" scope = "session"> ! <!--- Create Login to Database Form ---> ! <cfform action="#mainpage#?#session.URLToken#&dbProcess=ShowTables" method="post" name="FORM_LogintoDB" enablecab="yes"> ! <cfinput name="dataSource" type="text" size="40" required="yes"> Data Source<br> ! <cfinput name="userName" type="text" size="40" required="yes"> User Name<br> ! <cfinput name="password" type="password" size="40"> Password<br> ! <input name="LoginSubmit" type="submit" value="Login to MyDatabase"> ! <input name="LoginReset" type="reset" value="Clear Login Form"> ! </cfform> ! </cflock> ! </td> ! </tr> ! </table> ! <cfinclude template="Include/Footer.cfm"> ! </body> </html> --- 1,43 ---- ! <!---******************************************************************************************* ! * Copyright: MyDatabase Pilot is distributed under the terms of the GNU GPL license * ! * Template: index.cfm * ! * Purpose: Initial Database Login page. * ! * You can either log into a database using a form or by clicking * ! * "Default Database" you are automatically connected to the default * ! * database defined in the Application.cfm template. * ! * Requiremets In order to use the "Default Database" feature, the database connection * ! * variables must be configured in the Aplication.cfm file * ! * Todo: -Enhance the look and feel of the form using tables and CSS * ! * Known Issues/Bugs: * ! ********************************************************************************************---> ! ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> ! <html> ! <head> ! <title><cfoutput>#applicationName# #applicationVersion#</cfoutput></title> ! <link rel="STYLESHEET" type="text/css" href="Styles/master.css"> ! </head> ! <body> ! <cfinclude template="Include/Header.cfm"> ! <table width="100%" border="0" cellspacing="2" cellpadding="0"> ! <tr><td class="Warning">Warning: This software is currently under development. It is currently in Alpha release. Which means it is not fully tested and could be unstable.</td></tr> ! <tr> ! <td> ! <p class="Plain">You can either login to a database by completing the form below, or if you have configured the Application.cfm file for a default database, you can <a href="MyDatabasePilot.cfm">USE DEFAULT DATABASE</a>.</p> ! <!--- Initiate a Read Only lock to ensure the integrity of session variables ---> ! <cflock timeout = "30" throwontimeout="no" type = "readonly" scope = "session"> ! <!--- Create Login to Database Form ---> ! <cfform action="#mainpage#?#session.URLToken#&dbProcess=ShowTables" method="post" name="FORM_LogintoDB" enablecab="yes"> ! <cfinput name="dataSource" type="text" size="40" required="yes"> Data Source<br> ! <cfinput name="userName" type="text" size="40" required="yes"> User Name<br> ! <cfinput name="password" type="password" size="40"> Password<br> ! <input name="LoginSubmit" type="submit" value="Login to MyDatabase"> ! <input name="LoginReset" type="reset" value="Clear Login Form"> ! </cfform> ! </cflock> ! </td> ! </tr> ! </table> ! <cfinclude template="Include/Footer.cfm"> ! </body> </html> |