-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.jsp
More file actions
88 lines (68 loc) · 2.38 KB
/
index.jsp
File metadata and controls
88 lines (68 loc) · 2.38 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
<%--
Document : login
Created on : Dec 18, 2017, 4:09:11 PM
Author : edgargangwareiv
--%>
<!DOCTYPE html>
<%--This includes my User.class so I can declare user objects later--%>
<%@ page contentType="text/html" pageEncoding="UTF-8" import="classes.User" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Login Screen</title>
<link href='http://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
<style>
.company-title {
padding: 100px;
background-color: white;
font-family: "lato", serif;
text-align: right;
font-size: xx-large;
}
.flex-container {
display:flex;
flex-direction: column;
flex-wrap: wrap;
background-color: blue;
text-align: center;
padding-top: .5em;
padding-bottom: .5em;
}
.form {
padding-top: .5em;
align-content: flex-end;
display: block;
text-align: right;
}
.title {
padding-bottom: .5em;
font-family: Futura;
text-align: right;
padding-right: .5em;
}
.forms{
font-family: Futura;
padding: .25em;
align-content: flex-end;
text-align: right;
}
</style>
</head>
<body>
<div class="company-title">
Please Hire Me Inc.
</div>
<div class="flex-container">
<div class="title">
<div>CSR Login</div>
</div>
<div class="forms">
<form name="Login Input Form" action='checkLogin.jsp'>
User Name: <input type="text" name="userName" /> <br>
Password: <input type="password" name="password" /> <br>
<input type="submit" value="OK" />
</form>
</div>
</div>
</body>
</html>