source: trunk/admin/login.php @ 782

Revision 782, 3.4 KB checked in by r2, 13 months ago (diff)

копирайты

  • Property svn:executable set to *
Line 
1<!xml version="1.0" encoding="windows-1251">
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<?php
4/******************************************************************************/
5//                                                                            //
6//                             InstantCMS v1.8                                //
7//                        http://www.instantcms.ru/                           //
8//                                                                            //
9//                   written by InstantCMS Team, 2007-2010                    //
10//                produced by InstantSoft, (www.instantsoft.ru)               //
11//                                                                            //
12//                        LICENSED BY GNU/GPL v2                              //
13//                                                                            //
14/******************************************************************************/
15
16?>
17<html xmlns="http://www.w3.org/1999/xhtml">
18<head>
19<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
20<title>InstantCMS - Àâòîðèçàöèÿ</title>
21<style type="text/css">
22<!--
23    html{ height:100%; }
24    body { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; height:100%; margin:0px; background:#FFF; }
25    #top{ display:block; width:368px; height:30px; background:url(images/auth/top.jpg) no-repeat center top; }
26    #form{ display:block; width:368px; height:178px; background:url(images/auth/form.jpg) no-repeat center top; }
27    #fields { padding-top: 25px; }
28    #fields .field { display:block; width:270px; height:34px; text-align: right; margin-bottom: 6px; }
29    #fields .field input { width:230px; font-size:16px; margin-right:10px; margin-top:6px; border:none; background: none; }
30    #fields .login { background:url(images/auth/login.png) no-repeat; }
31    #fields .passw { background:url(images/auth/passw.png) no-repeat; }
32    .button{ display:block; width:100px; height: 32px; background:url(images/auth/btn.png) no-repeat; cursor: pointer; margin-top:25px; }
33    .button:hover{ background:url(images/auth/btn_hover.png) no-repeat; }
34    #copy { margin-top:15px; }
35    #copy a { color: #316294; }
36}
37-->
38</style>
39</head>
40
41<body onLoad="document.loginform.login.focus();">
42    <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
43        <tr>
44            <td align="center" valign="middle">
45
46                <div id="top"></div>
47                <div id="form">
48                    <form action="/login" method="post" name="loginform" target="_top" id="loginform">
49                        <input type="hidden" name="is_admin" value="1" />
50                        <div id="fields">
51                            <div class="field login"><input name="login" type="text" id="login" /></div>
52                            <div class="field passw"><input name="pass" type="password" id="pass" /></div>
53                        </div>
54                        <div class="button" onclick="document.loginform.submit()"></div>
55                        <input type="submit" name="go" style="display:none" />
56                    </form>
57                </div>
58                <div id="copy"><a href="http://www.instantcms.ru/">InstantCMS</a> &copy; 2007-2011</div>
59
60            </td>
61        </tr>
62    </table>
63</body>
64</html>
Note: See TracBrowser for help on using the repository browser.