-
Notifications
You must be signed in to change notification settings - Fork 0
/
Student_login.aspx
55 lines (53 loc) · 6.65 KB
/
Student_login.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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Student_login.aspx.cs" Inherits="School_Management_System.Student_login" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div style="height: 696px; background-color: #FFFF66;">
<div style="font-size: x-large; background-color: #000066; color: #FFFFFF; font-weight: bold; height: 90px; width: 1369px;">
<br />
LOYOLA PRIMARY SCHOOL</div>
<br />
<br />
<br />
<br />
<br />
<asp:Panel ID="Panel4" runat="server" BackColor="White" Height="408px" style="margin-left: 333px" Width="748px">
<br /> <asp:Label ID="TIE_LBL" runat="server" style="font-weight: 700" Text="STUDENT LOGIN"></asp:Label>
<br />
<br />
<br />
<br /><br /> <asp:Label ID="Label2" runat="server" style="font-weight: 700" Text="Registration No"></asp:Label>
<asp:TextBox ID="userid_txtbx" runat="server" Height="25px"></asp:TextBox>
<asp:RequiredFieldValidator ID="user_rqval" runat="server" ControlToValidate="userid_txtbx" ErrorMessage="*Enter Registration Number" ForeColor="Red"></asp:RequiredFieldValidator>
<br />
<br />
<br />
<asp:Label ID="Password" runat="server" style="font-weight: 700" Text="Password"></asp:Label>
<asp:TextBox ID="pass_txtbx" runat="server" Height="25px" TextMode="Password"></asp:TextBox>
<asp:RequiredFieldValidator ID="pass_rqval" runat="server" ControlToValidate="pass_txtbx" ErrorMessage="*Enter Password" ForeColor="Red"></asp:RequiredFieldValidator>
<br />
<br />
<br />
<asp:Button ID="login_btn" runat="server" Height="38px" OnClick="login_btn_Click" Text="Login" Width="69px" />
<asp:Button ID="clr_btn" runat="server" Height="38px" Text="Clear" Width="69px" />
<asp:Button ID="home_btn" runat="server" Height="38px" OnClick="home_btn_Click" Text="Back to Homepage" Width="121px" CausesValidation="False" />
<br />
<br />
<asp:Label ID="sts_lbl" runat="server" style="font-weight: 700" Text="sts" Visible="False"></asp:Label>
<br />
<br />
<asp:Label ID="Label3" runat="server" Text="Default Password is (D.O.B)"></asp:Label>
</asp:Panel>
</div>
<div>
</div>
</form>
</body>
</html>