Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AssignmentSystem
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Florian Müntz
AssignmentSystem
Commits
7791a570
Commit
7791a570
authored
2 months ago
by
HerrWaechter
Browse files
Options
Downloads
Patches
Plain Diff
Searchable Courses
parent
866a3dd2
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
source/Add-course.html
+0
-22
0 additions, 22 deletions
source/Add-course.html
source/AddCourse.html
+74
-0
74 additions, 0 deletions
source/AddCourse.html
source/CosmeticShop.html
+0
-0
0 additions, 0 deletions
source/CosmeticShop.html
with
74 additions
and
22 deletions
source/Add-course.html
deleted
100644 → 0
+
0
−
22
View file @
866a3dd2
<!DOCTYPE html>
<html
lang=
"de"
>
<head>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
Add Course
</title>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"style.css"
>
<script
src=
"script.js"
defer
></script>
</head>
<body>
<nav
class=
"navbar"
>
<div
class=
"logo"
><a
href=
"Homepage.html"
>
LOGO
</a></div>
<div
class=
"nav-dots"
>
<h1>
Add Course
</h1>
</div>
<a
href=
"#"
class=
"account-btn"
>
Account
</a>
</nav>
<main
class=
"main-content"
>
</main>
</body>
</html>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
source/AddCourse.html
0 → 100644
+
74
−
0
View file @
7791a570
<!DOCTYPE html>
<html
lang=
"de"
>
<head>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
Add Course
</title>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"style.css"
>
<script
src=
"script.js"
defer
></script>
<style>
.main-content
{
grid-template-columns
:
1
fr
;
}
#input
{
width
:
100%
;
height
:
100%
;
padding
:
0px
;
margin
:
0px
;
}
#UL
{
display
:
grid
;
grid-template-columns
:
1
fr
1
fr
1
fr
1
fr
;
grid-gap
:
10px
;
}
</style>
</head>
<body>
<nav
class=
"navbar"
>
<div
class=
"logo"
><a
href=
"Homepage.html"
>
LOGO
</a></div>
<div
class=
"nav-dots"
>
<h1>
Add Course
</h1>
</div>
<a
href=
"#"
class=
"account-btn"
>
Account
</a>
</nav>
<main
class=
"main-content"
>
<input
type=
"text"
id=
"input"
onkeyup=
"search()"
placeholder=
"Search..."
>
<ul
id=
"UL"
>
<li
class=
"box"
data-href=
"joinGroup.html"
>
Course 1
</li>
<li
class=
"box"
data-href=
"joinGroup.html"
>
Course 2
</li>
<li
class=
"box"
data-href=
"joinGroup.html"
>
Prog
</li>
<li
class=
"box"
data-href=
"joinGroup.html"
>
Prog 2
</li>
<li
class=
"box"
data-href=
"joinGroup.html"
>
Test
</li>
</ul>
</main>
</body>
<script>
function
search
()
{
var
input
,
filter
,
div
,
ul
,
li
,
a
,
i
,
txtValue
;
input
=
document
.
getElementById
(
'
input
'
);
filter
=
input
.
value
.
toUpperCase
();
ul
=
document
.
getElementById
(
"
UL
"
);
li
=
ul
.
getElementsByTagName
(
'
li
'
);
for
(
i
=
0
;
i
<
li
.
length
;
i
++
)
{
txtValue
=
li
[
i
].
textContent
||
li
[
i
].
innerText
;
if
(
txtValue
.
toUpperCase
().
indexOf
(
filter
)
>
-
1
)
{
li
[
i
].
style
.
display
=
""
;
}
else
{
li
[
i
].
style
.
display
=
"
none
"
;
}
}
}
</script>
</html>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
source/Cosmetic
-s
hop.html
→
source/Cosmetic
S
hop.html
+
0
−
0
View file @
7791a570
File moved
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment