Search This Blog

Friday, October 8, 2010

Team meting-6

Today we ( John, myself, Dharmil) were continuing in what we did in the last team meeting.
John was working on the Family.cs file
Myself and Dharmil were working on the UI part of the login.aspx

It was a pretty simple piece of code, but we had a small issue in getting it to look in the right format. 
We tried different formats( tables, doing it manually), finally we fixed with the table format. 
We put it to the centre and we had a small button for Login. Here is the code for it :

<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true"
    CodeBehind="login.aspx.cs" Inherits="Volunteer_Management.login" %>

<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="body" runat="server">
    <div class="login">
        <form action = "login.aspx"></form>
        <center>
            <table>
                <tr>
                    <td>Email:</td>
                    <td><asp:TextBox ID="emailTextBox" runat="server"></asp:TextBox></td>
                </tr>
                <tr>
                    <td>Password:</td>
                    <td><asp:TextBox ID="passwordTextBox" runat="server"></asp:TextBox></td>
                </tr>
            </table>
            <asp:Button ID="loginButton" runat="server" Text="Login" onclick="submit_Click" />
        </center>
    </div>
    <div class="warning">
        <asp:Label ID="loginWarningLabel" runat="server" Text=""></asp:Label>
    </div>
</asp:Content>

John was working on the implementation of the family.cs

This was all we did in this team meeting.



No comments:

Post a Comment