| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Login.aspx.cs" Inherits="LYFZ.NationalMarketing.Login" %>
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title></title>
- <style type="text/css">
- body {
- background: #0F4C5E;
- }
- .login {
- position: absolute;
- top: 50%;
- left: 50%;
- margin: -120px 0 0 -300px;
- border: 1px #05799E solid;
- width: 535px;
- height: 110px;
- background: #0C5870;
- }
- .title-text {
- margin: 5px 5px 0 0;
- text-align: right;
- color: #FFF;
- }
- input {
- border: 1px #ddd solid;
- height: 19px;
- width: 83px;
- }
- .button {
- padding: 2px 4px 0 4px;
- font-size: 12px;
- height: 23px;
- background-color: #ece9d8;
- border-width: 1px;
- }
- #foot {
- position: absolute;
- margin: 0 auto;
- left: 50%;
- top: 50%;
- width: 600px;
- margin: -6px 0 0 -300px;
- }
- </style>
- </head>
- <body>
- <form runat="server" id="myform">
- <div>
- <div class="login" style="width: 600px;">
- <div>
- <div class="f-right title-text">
- <br />
- </div>
- </div>
- <div>
- <table width="554">
- <tr>
- <td width="86px" align="right" height="45px">用户名:</td>
- <td width="113">
- <asp:TextBox ID="txtname" runat="server" Style="width: 120px;" TabIndex="1"></asp:TextBox>
- </td>
- <td width="70" align="right">密 码:</td>
- <td width="104">
- <input id="txtpwd" runat="server" value="123456" type="password" style="width: 120px;"/>
- </td>
- <td style="padding-left: 5px; width: 62px;">
- <asp:Button ID="Button1" runat="server" Text="登录" Style="width: 100px;" OnClick="Button1_Click" />
- </td>
- </tr>
- </table>
- </div>
- </div>
- </div>
- </form>
- </body>
- </html>
|