-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDefault.aspx
105 lines (98 loc) · 3.33 KB
/
Default.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="RMS.Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
.title
{
display: block;
float: left;
text-align: left;
width: auto;
font-size: large;
font-family: "Helvetica Neue";
}
h1
{
font-size: 1.6em;
padding-bottom: 0px;
margin-bottom: 0px;
}
h1, h2, h3, h4, h5, h6
{
font-size: 1.5em;
color: #666666;
font-variant: small-caps;
text-transform: none;
font-weight: 200;
margin-bottom: 0px;
}
.style1
{
font-family: "Helvetica Neue";
font-size: x-large;
}
.style2
{
color: #FFFFFF;
}
</style>
</head>
<body bgcolor="#cccccc">
<form id="form2" runat="server">
<div style="width: 1273px; background-color: #006600; font-family: Cambria; font-size: xx-small; font-weight: bold; color: #FFFFFF; vertical-align: bottom; margin-right: 15mm; margin-left: 15mm; height: 61px;">
<br /> <span class="style1"><span class="style49">RESULT MANAGEMENT PORTAL</span></span></span></div>
<br />
<div style="text-align: center; width: 1382px;">
<asp:Label ID="lblError" runat="server" BackColor="Red" Font-Bold="True"
Font-Names="Arial" Font-Size="Large" ForeColor="White" Text="E" Visible="False"></asp:Label>
</div>
<br />
<br />
<div align="center" style="width: 550px; height: 221px; margin-left: 400px">
<table bgcolor="#E3EAEB" bordercolor="#003366"
class="style40" style="background-color: #E3EAEB; height: 210px;">
<tr>
<td colspan="2" style="background-color: #006600"
align="center" class="style2">
<strong>Log In</strong></td>
</tr>
<tr>
<td class="style47">
Username:</td>
<td style="text-align: left" align="center">
<asp:TextBox ID="txtUsername" runat="server" Width="220px"
></asp:TextBox>
</td>
</tr>
<tr>
<td class="style47">
Password:</td>
<td class="style46">
<asp:TextBox ID="txtpassword" runat="server" TextMode="Password" Width="220px"></asp:TextBox>
<asp:LinkButton ID="showPassword" runat="server" Font-Size="Small"
Font-Underline="False" onclick="showPassword_Click" >show</asp:LinkButton>
</td>
</tr>
<tr>
<td class="style42" colspan="2">
</td>
</tr>
<tr>
<td colspan="2" align="center">
<asp:Button ID="btnLogin" runat="server" Font-Bold="True"
Text="Log in" Width="100px" onclick="btnLogin_Click" />
</td>
</tr>
</table>
</div>
<p>
<asp:TextBox ID="txtLogUser" runat="server" Visible="False" Width="63px">BeyUser</asp:TextBox>
<asp:TextBox ID="txtProfile" runat="server" Visible="False" Width="50px">Admin</asp:TextBox>
</p>
</form>
</body>
</html>