-
Notifications
You must be signed in to change notification settings - Fork 0
/
member.aspx
51 lines (42 loc) · 1.63 KB
/
member.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="member.aspx.cs" Inherits="member" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<asp:Panel ID="Panel1" runat="server" Height="703px" BorderColor="#009933" Style="margin-left: 0px">
<center>
<table border="0">
<tr>
<td>
Email
</td>
<td>
<asp:TextBox ID="TextBox1" runat="server" Width="179px"></asp:TextBox>
</td>
</tr>
<tr>
<td>
Password
</td>
<td>
<asp:TextBox ID="TextBox2" runat="server" Width="179px"></asp:TextBox>
</td>
</tr>
<tr>
<td>
</td>
<td>
<asp:Label ID="Label1" runat="server" ForeColor="Red"></asp:Label>
</td>
</tr>
<tr>
<td>
</td>
<td>
<asp:Button ID="Button1" runat="server" BorderStyle="Solid" OnClick="Button1_Click" Text="Create Account" Width="98px" />
<asp:Button ID="Button2" runat="server" BorderStyle="Solid" OnClick="Button2_Click" Text="Login" Width="82px" />
</td>
</tr>
</table>
</center>
</asp:Panel>
</asp:Content>