Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PA-D3TI-09
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Loni Miranda Doloksaribu
PA-D3TI-09
Commits
7ad2e057
Commit
7ad2e057
authored
May 09, 2017
by
Loni Miranda Doloksaribu
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://gitlab.del.ac.id/11316011/PA-D3TI-09
parents
6e08152e
263c532a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
61 deletions
+0
-61
index.html
login/index.html
+0
-61
No files found.
login/index.html
deleted
100644 → 0
View file @
6e08152e
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
>
<title>
Daily UI - Day 1 Sign In
</title>
<!-- Google Fonts -->
<link
href=
'https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700|Lato:400,100,300,700,900'
rel=
'stylesheet'
type=
'text/css'
>
<link
rel=
"stylesheet"
href=
"css/animate.css"
>
<!-- Custom Stylesheet -->
<link
rel=
"stylesheet"
href=
"css/style.css"
>
<script
src=
"https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"
></script>
</head>
<body>
<div
class=
"container"
>
<div
class=
"top"
>
<h1
id=
"title"
class=
"hidden"
><span
id=
"logo"
><span>
Just
</span>
Admin
</span></h1>
</div>
<div
class=
"login-box animated fadeInUp"
>
<div
class=
"box-header"
>
<h2>
Log In
</h2>
</div>
<label
for=
"username"
>
Username
</label>
<br/>
<input
type=
"text"
id=
"username"
>
<br/>
<label
for=
"password"
>
Password
</label>
<br/>
<input
type=
"password"
id=
"password"
>
<br/>
<button
type=
"submit"
>
Sign In
</button>
<br/>
</div>
</div>
</body>
<script>
$
(
document
).
ready
(
function
()
{
$
(
'#logo'
).
addClass
(
'animated fadeInDown'
);
$
(
"input:text:visible:first"
).
focus
();
});
$
(
'#username'
).
focus
(
function
()
{
$
(
'label[for="username"]'
).
addClass
(
'selected'
);
});
$
(
'#username'
).
blur
(
function
()
{
$
(
'label[for="username"]'
).
removeClass
(
'selected'
);
});
$
(
'#password'
).
focus
(
function
()
{
$
(
'label[for="password"]'
).
addClass
(
'selected'
);
});
$
(
'#password'
).
blur
(
function
()
{
$
(
'label[for="password"]'
).
removeClass
(
'selected'
);
});
</script>
</html>
\ No newline at end of file
Write
Preview
Markdown
is supported
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