Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Arthur.Pautrel
Software-Engineering_TP13
Commits
025e55d0
Commit
025e55d0
authored
Mar 16, 2022
by
Arthur.Pautrel
Browse files
Task 2
parent
1460ac23
Changes
1
Hide whitespace changes
Inline
Side-by-side
task2.jsp
0 → 100644
View file @
025e55d0
<%@ page
language=
"java"
contentType=
"text/html; charset=ISO-8859-1"
pageEncoding=
"ISO-8859-1"
%>
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"ISO-8859-1"
>
<title>
Task 2
</title>
</head>
<link
rel=
"stylesheet"
href=
"https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
>
<link
rel=
"stylesheet"
href=
"https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
>
<script
src=
"https://code.jquery.com/jquery-3.5.1.min.js"
></script>
<script
src=
"https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
></script>
<script
src=
"https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"
></script>
<style>
.login-form
{
width
:
340px
;
margin
:
50px
auto
;
font-size
:
15px
;
}
.login-form
form
{
margin-bottom
:
15px
;
background
:
#f7f7f7
;
box-shadow
:
0px
2px
2px
rgba
(
0
,
0
,
0
,
0.3
);
padding
:
30px
;
}
.login-form
h2
{
margin
:
0
0
15px
;
}
.form-control
,
.btn
{
min-height
:
38px
;
border-radius
:
2px
;
}
.btn
{
font-size
:
15px
;
font-weight
:
bold
;
}
</style>
</head>
<body>
<div
class=
"login-form"
>
<form
action=
"/examples/actions/confirmation.php"
method=
"post"
>
<h2
class=
"text-center"
>
Log in
</h2>
<div
class=
"form-group"
>
<input
type=
"text"
class=
"form-control"
placeholder=
"Username"
required=
"required"
>
</div>
<div
class=
"form-group"
>
<input
type=
"password"
class=
"form-control"
placeholder=
"Password"
required=
"required"
>
</div>
<div
class=
"form-group"
>
<button
type=
"submit"
class=
"btn btn-primary btn-block"
>
Log in
</button>
</div>
</form>
</div>
</body>
</html>
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment