forked from nooraintahir/Degree-Issuance-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathComplain.aspx
89 lines (85 loc) · 3.53 KB
/
Complain.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
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
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Complain.aspx.cs" Inherits="Complain" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form2" runat="server" style="background-color: #41B3A3; text-align: center;">
<p>
</p>
<div style="margin-left: 180px; margin-right: 100px; text-align:center">
<asp:Panel ID="Panel1" runat="server" BackColor="#E27360" Font-Bold="True" Font-Italic="False" Font-Size="XX-Large" HorizontalAlign="Center" ForeColor="White" Width="1000" >
<br />
Complaint Form<br />
<br />
</asp:Panel >
</div>
<br />
<br />
<div style="color:white">
Please fill in the fields you wish to change<br />
</div>
<br />
<p style="margin-left: 0px; color:white " >
Rollno <asp:TextBox ID="TextBox3" runat="server"></asp:TextBox>
</p>
<p style="margin-left: 0px; color:white " >
Fname <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</p>
<p style="margin-left: 0px; color:white ">
LName
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
</p>
<p style="margin-left: auto; text-align: center; color:white ">
Address
<asp:TextBox ID="TextBox5" runat="server"></asp:TextBox>
</p>
<p style="margin-left: auto; text-align: center; color:white ">
CGPA
<asp:TextBox ID="TextBox4" runat="server" style="margin-left: 2px"></asp:TextBox>
</p>
<br />
<asp:Button ID="Button2" runat="server" Text="Submit" Height="35px" OnClick="Button2_Click" Width="71px" />
<br /> <br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
</form>
</body>
</html>