root/trunk/website/forums/admin/login.cfm @ 46

Revision 5, 1.2 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      : June 01, 2004
6        Last Updated : June 01, 2004
7        History      :
8        Purpose          :
9--->
10
11<cfoutput>
12<html>
13
14<head>
15<title>Galleon Forums Administrator Login</title>
16<link rel=stylesheet type="text/css" href="../stylesheets/style.css">
17</head>
18
19<body bgcolor="##CCCCCC" onload="document.login.username.focus()">
20
21<form action="#cgi.script_name#?#cgi.query_string#" method="post" name="login">
22<table height="400" width="100%" >
23        <tr align="center" valign="middle"><td>
24       
25                <table width="400" class="tMain" cellpadding=6>
26                        <tr class="tHeader">
27                                <td colspan="2">Please Login</td>
28                        </tr>
29                        <tr>
30                                <td align="right"><b>username:</b></td>
31                                <td align="left"><input type="text" name="username" size="30"></td>
32                        </tr>
33                        <tr>
34                                <td align="right"><b>password:</b></td>
35                                <td align="left"><input type="password" name="password" size="30"></td>
36                        </tr>
37                        <tr>
38                                <td>&nbsp;</td>
39                                <td><input type="submit" name="logon" value="Login"></td>
40                        </tr>
41                </table>
42               
43        </td></tr>
44       
45</table>
46</form>
47
48</body>
49</html>
50</cfoutput>
51
52<cfsetting enablecfoutputonly=false>
Note: See TracBrowser for help on using the browser.