| 1 | <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="login.aspx.cs" Inherits="login" Title="platnosci.admoto.pl - Strona logowania" Culture="auto" UICulture="auto" meta:resourcekey="PageResource1"%>
|
|---|
| 2 | <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %>
|
|---|
| 3 |
|
|---|
| 4 | <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
|
|---|
| 5 | <asp:ScriptManager id="ScriptManager1" runat="server"></asp:ScriptManager>
|
|---|
| 6 |
|
|---|
| 7 | <div id="left">
|
|---|
| 8 | </div>
|
|---|
| 9 | <div id="content">
|
|---|
| 10 | <p><asp:Literal ID="informacja1" runat="server" meta:resourcekey="informacja1Literal">Zaloguj siê, aby dokonaæ p³atnoci kart¹.</asp:Literal></p>
|
|---|
| 11 | <div id="login">
|
|---|
| 12 | <p><asp:Literal ID="informacja2" runat="server" meta:resourcekey="informacja2Literal">Wprowad numer NIP swojej firmy i numer zlecenia</asp:Literal></p>
|
|---|
| 13 | <p><asp:Label ID="NIPLabel" runat="server" AssociatedControlID ="NIPTextBox" Text="NIP:"
|
|---|
| 14 | meta:resourcekey="login_NIPLabel" Width="200px"></asp:Label>
|
|---|
| 15 | <asp:TextBox ID="NIPTextBox" runat="server"></asp:TextBox><asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ErrorMessage="*" ControlToValidate="NIPTextBox" /></p>
|
|---|
| 16 | <p><asp:Label ID="NrZlecLabel" runat="server" AssociatedControlID ="NrZlecTextBox" Text="Nr faktury:"
|
|---|
| 17 | meta:resourcekey="login_NrZlecLabel" Width="200px"></asp:Label>
|
|---|
| 18 | <asp:TextBox ID="NrZlecTextBox" runat="server"></asp:TextBox><asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ErrorMessage="*" ControlToValidate="NrZlecTextBox" /></p>
|
|---|
| 19 | <p>
|
|---|
| 20 | <asp:Button ID="ZalogujButton" runat="server" Text="Zaloguj" meta:resourcekey="ZalogujButton" OnClick="ZalogujButton_Click"/></p>
|
|---|
| 21 | <p class="blad"><asp:Literal ID="errorMsg" runat="server" meta:resourcekey="errorMsgLiteral"></asp:Literal>
|
|---|
| 22 | </p>
|
|---|
| 23 | </div>
|
|---|
| 24 | </div>
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 | <div id="flyout" style="display: none; overflow: hidden; z-index: 2; background-color: #FFFFFF; border: solid 1px #D0D0D0;"></div>
|
|---|
| 28 |
|
|---|
| 29 | <div id="info" style="display: none; width: 400px; z-index: 2; opacity: 0; filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0); font-size: 12px; border: solid 1px #CCCCCC; background-color: #FFFFFF; padding: 5px;">
|
|---|
| 30 | <div id="btnCloseParent" style="float: right; opacity: 0; filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);">
|
|---|
| 31 | <asp:LinkButton id="btnClose" runat="server" OnClientClick="return false;" Text="X" ToolTip="Close"
|
|---|
| 32 | Style="background-color: #666666; color: #FFFFFF; text-align: center; font-weight: bold; text-decoration: none; border: outset thin #FFFFFF; padding: 5px;" />
|
|---|
| 33 | </div>
|
|---|
| 34 | <div>
|
|---|
| 35 | <p class="bold">
|
|---|
| 36 | <asp:Literal ID="infoText" runat="server" meta:resourcekey="infoText">Nr zlecenia zakrelony jest czerwon¹ lini¹.</asp:Literal></p>
|
|---|
| 37 | <asp:ImageButton ID="FakturaImageButton" runat="server" AlternateText="faktura" />
|
|---|
| 38 | </div>
|
|---|
| 39 | </div>
|
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 | <script type="text/javascript" language="javascript">
|
|---|
| 43 | // Move an element directly on top of another element (and optionally
|
|---|
| 44 | // make it the same size)
|
|---|
| 45 | function Cover(bottom, top, ignoreSize) {
|
|---|
| 46 | var location = Sys.UI.DomElement.getLocation(bottom);
|
|---|
| 47 | top.style.position = 'absolute';
|
|---|
| 48 | top.style.top = location.y + 'px';
|
|---|
| 49 | top.style.left = location.x + 'px';
|
|---|
| 50 | if (!ignoreSize) {
|
|---|
| 51 | top.style.height = bottom.offsetHeight + 'px';
|
|---|
| 52 | top.style.width = bottom.offsetWidth + 'px';
|
|---|
| 53 | }
|
|---|
| 54 | }
|
|---|
| 55 | </script>
|
|---|
| 56 | </asp:Content>
|
|---|
| 57 |
|
|---|