<%@ 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>Untitled Page</title>
</head>
<body>
   <form id="form1" runat="server">
   <div>
      <table>
      <tr>
         <td>Imi: </td>
         <td style="width: 193px">
            <asp:TextBox ID="firstName" Runat="server" />
         </td>
      </tr>
      <tr>
         <td>Nazwisko: </td>
         <td style="width: 193px">
            <asp:TextBox ID="lastName" Runat="server" />
         </td>
      </tr>
      <tr>
         <td>Numer telefonu: </td>
         <td style="width: 193px">
            <asp:TextBox ID="phone" Runat="server" />
         </td>
      </tr>
      <tr>
         <td>Data urodzenia</td>
         <td style="width: 193px">
            <asp:TextBox ID="birthDate" Runat="server" />
         </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>
