-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
184 lines (184 loc) · 5.06 KB
/
index.html
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang="en">
<head>
<title>BECU Login</title>
<!-- <link rel="stylesheet" type="text/css" href="css/style.css"/> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script type="text/javascript" src="Script/utils.js"></script>
<script type="text/javascript" src="Script/functions.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background-color: white;
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
}
img {
max-width: 100%;
max-height: 100%;
}
.frame { /* The background bar behind the BECU Logo*/
width: 100%;
height: 63px;
background: #e6e6e6;
}
input {
display: block;
margin : 0 auto;
font-family: Arial, Helvetica, sans-serif;
}
.login{ /* The user login section*/
position: absolute;
right: 0;
width: 42.5%;
height: 91.5%;
overflow: auto;
background: #004080;
}
h1{ /* Header for the user login section */
text-align: center;
color: #FFFFFF;
margin: 100px 0px 40px;
font-family: Arial, Helvetica, sans-serif;
font-size: 40px;
}
#Uname{ /* ID for username input*/
width: 90%;
height: 40px;
border: none;
border-radius: 10px;
padding-left: 30px;
font-size: 20px;
}
#Pass{ /* ID for password input*/
width: 90%;
height: 40px;
border: none;
border-radius: 10px;
padding-left: 30px;
font-size: 20px;
}
#Login{ /* ID for the login button*/
width: 45%;
height: 55px;
border: none;
border-radius: 10px;
color: white;
background: #cc0000;
font-size: 30px;
font-weight: bold;
}
/* The following 4 sections of codes are for the icons on the input*/
.input-icons i {
position: absolute;
}
.input-icons {
width: 100%;
margin-bottom: 15px;
}
.icon {
color: black;
padding: 20px 0px 0px 10px; /* top | right | bottom | left */
width: 70px;
text-align: left;
font-size: 18px;
}
.input-field {
width: 100%;
padding: 10px;
font-size: 20px;
font-weight: 500;
}
a{
color: white;
background-color: transparent;
text-decoration: none;
}
/* The following 4 sections of codes are for the forget password link */
.link_center a:link {
text-decoration: none;
}
.link_center a:visited {
text-decoration: none;
}
.link_center a:hover {
text-decoration: underline;
}
.link_center a:active {
text-decoration: underline;
}
.link_center { /* Center the hyperlink */
text-align: center;
}
.size { /* The background image for the voice log-in feacture*/
position: absolute;
top: 17%;
left: 12%;
/*width: 550px;*/
width: 37%;
/*height: 650px;*/
height: 60%;
}
a.button4{
display:inline-block;
padding:0.3em 1.2em;
margin:0 0.1em 0.1em 0;
border:0.16em solid rgba(255,255,255,0);
border-radius:2em;
box-sizing: border-box;
text-decoration:none;
font-family:'Roboto',sans-serif;
font-weight:300;
color:#FFFFFF;
text-shadow: 0 0.04em 0.04em rgba(0,0,0,0.35);
text-align:center;
transition: all 0.2s;
}
a.button4:hover{
border-color: rgba(255,255,255,1);
}
@media all and (max-width:30em){
a.button4{
display:block;
margin:0.2em auto;
}
}
/*label{ For adding username or password label before the input
color: #FFFFFF;
font-size: 17px;
}
span{
color: white;
font-size: 17px;
}*/
</style>
</head>
<body>
<div class="frame">
<a href="https://www.becu.org/"><img src="Images/BECU_Logo.png" alt="BECU Logo" style="position:relative; left:5%;"></a>
</div>
<div class="login">
<form id="login" method="get" action="login.php" style="max-width:400px;margin:auto">
<h1><b>User Login</b></h1><br>
<div class="input-icons">
<i class="fa fa-user icon"></i>
<input class="input-field" type="text" name="Username" id="Uname" placeholder="Username">
<br>
</div>
<div class="input-icons">
<i class="fa fa-lock icon"></i>
<input class="input-field" type="Password" name="Password" id="Pass" placeholder="Password">
<br><br><br>
</div>
<input type="button" name="Login" id="Login" value="LOGIN >" onclick="login()">
<br>
<div class="link_center">
<a href="#">Forgot your password</a>
</div>
</form>
</div>
<img class="size" src="Images/BECU_Voice_Login_Feature.png" alt="BECU Voice Log-in">
</body>
</html>