<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ProfileInfo.aspx.cs" Inherits="ProfileInfo_aspx" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
   <title>Informacje o profilu</title>
</head>
<body>
   <form id="form1" runat="server">
   <div>
      <asp:Panel ID="pnlNonAnonymousInfo" runat="server">
         <table>
         <tr>
            <td>Imi: </td>
            <td style="width: 193px">
               <asp:TextBox ID="txtFirstName" Runat="server" />
            </td>
         </tr>
         <tr>
            <td>Nazwisko: </td>
            <td style="width: 193px">
               <asp:TextBox ID="txtLastName" Runat="server" />
            </td>
         </tr>
         <tr>
            <td>Numer telefonu: </td>
            <td style="width: 193px">
               <asp:TextBox ID="txtPhone" Runat="server" />
            </td>
         </tr>
         <tr>
            <td>Data urodzenia</td>
            <td style="width: 193px">
               <asp:TextBox ID="txtBirthDate" Runat="server" />
            </td>
         </tr>
         </table>
      </asp:Panel>
      <table>
      <tr>
         <td>
            <asp:CheckBoxList ID="cblChosenBooks" Runat="server" >
               <asp:ListItem>Programming C#</asp:ListItem>
               <asp:ListItem>Programming ASP.NET</asp:ListItem>
               <asp:ListItem>Programming .NET Apps</asp:ListItem>
               <asp:ListItem>Agile Software Development</asp:ListItem>
               <asp:ListItem>UML2 For Dummies</asp:ListItem>
               <asp:ListItem>
                  Object Oriented Design Heuristics
               </asp:ListItem>
               <asp:ListItem>Design Patterns</asp:ListItem>
            </asp:CheckBoxList>
         </td>
         <td style="width: 193px"></td>
      </tr>
      <tr>
         <td>
            <asp:Button ID="save" Text="Zapisz" Runat="server"
               OnClick="save_Click" />
         </td>
         <td style="width: 193px"></td>
      </tr>
      </table>
   </div>
   </form>
</body>
</html>
