-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsystem_admin.aspx
More file actions
94 lines (79 loc) · 2.53 KB
/
system_admin.aspx
File metadata and controls
94 lines (79 loc) · 2.53 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="system_admin.aspx.cs" Inherits="Database_Project.system_admin" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<center>
<div >
<h1 style="color:steelblue;">System admin </h1>
</div>
</center>
<hr />
<left>
<div >
<h2>Add Club</h2>
</div>
<div >
name
<asp:TextBox ID="name1" runat="server"></asp:TextBox>
 
location
<asp:TextBox ID="location1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="add " OnClick="Button1_Click" />
<br />
</div>
<h2>Delete Club</h2>
<div >
name
<asp:TextBox ID="name2" runat="server"></asp:TextBox>
 
<asp:Button ID="Button3" runat="server" Text="delete " OnClick="Button3_Click" />
<br />
</div>
<h2>Add Stadium</h2>
</div>
<div >
name
<asp:TextBox ID="name3" runat="server"></asp:TextBox>
 
location
<asp:TextBox ID="location2" runat="server"></asp:TextBox>
 
capacity
<asp:TextBox ID="capacity" type="number" min="0" runat="server"></asp:TextBox>
 
<asp:Button ID="Button4" runat="server" Text="add " OnClick="Button4_Click" />
<br />
</div>
<h2>Delete stadium</h2>
</div>
<div >
name
<asp:TextBox ID="name4" runat="server"></asp:TextBox>
 
<asp:Button ID="Button5" runat="server" Text="delete " OnClick="Button5_Click" />
<br />
</div>
<div>
<h2> Block A Fan</h2>
</div>
<div >
Enter national ID
<asp:TextBox ID="national" runat="server" style="margin-left: 43px"></asp:TextBox>
<asp:Button ID="Button2" runat="server" Text="Block" OnClick="Button2_Click" />
<br />
</div>
<br />
</div>
</left>
<div>
<asp:Panel ID="Panel1" runat="server"></asp:Panel>
</div>
</form>
</body>
</html>