root/trunk/website/soundings/admin/login.cfm

Revision 5, 1.3 kB (checked in by DanWilson, 17 years ago)

Initial Commit Of ModelGlue? Website (upgrade to blogcfc 511)

Line 
1<cfsetting enablecfoutputonly=true>
2<!---
3        Name         : login.cfm
4        Author       : Raymond Camden
5        Created      : September 01, 2004
6        Last Updated : March 4, 2005
7        History      : removed bad js
8        Purpose          :
9--->
10<cfimport taglib="../tags/" prefix="tags">
11
12<tags:layout templatename="plain" title="Soundings Admin Login">
13
14<cfoutput>
15
16<TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="0" height="90%" width="100%">
17        <TR>
18                <TD ALIGN="center" VALIGN="middle">
19               
20<form action="#cgi.script_name#?#cgi.query_string#" method="post" name="login"> 
21<table width="585" height="115" border="0" cellspacing="0" cellpadding="0">
22  <tr>
23    <td><div align="center"><img src="../images/logo.gif" width="172" height="185"></div></td>
24  </tr>
25  <tr>
26    <td height="115" background="../images/login.gif"><table width="68%" border="0" align="right" cellpadding="7" cellspacing="0">
27       <tr>
28        <td>
29          <input type="text" name="username" value="">
30        </td>
31      </tr>
32      <tr>
33        <td>
34          <input type="password" name="password" value=""> <input type="submit" name="logon" value="Login"></td>
35      </tr>
36
37    </table></td>
38  </tr>
39</table>
40</form>
41                </TD>
42        </TR>
43</TABLE>
44<script>
45document.login.username.focus();
46</script>
47</cfoutput>
48
49</tags:layout>
50
51<cfsetting enablecfoutputonly=false>
Note: See TracBrowser for help on using the browser.