Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DRP_45
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
Releases
Package 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
Wakefield, Rob
DRP_45
Commits
8b2eb1ec
Commit
8b2eb1ec
authored
1 year ago
by
stevenchenwaiho@gmail.com
Browse files
Options
Downloads
Patches
Plain Diff
minimal checking page
parent
9ef3a713
No related branches found
Branches containing commit
No related tags found
2 merge requests
!11
Add Minimal std/rectr dashboard to production
,
!10
Add minimal student and recruiter dashboard
Pipeline
#419493
passed
1 year ago
Stage: build
Stage: test
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/studentDashboard/page.js
+47
-16
47 additions, 16 deletions
src/app/studentDashboard/page.js
src/app/studentDashboard/studentDashboard.css
+3
-25
3 additions, 25 deletions
src/app/studentDashboard/studentDashboard.css
with
50 additions
and
41 deletions
src/app/studentDashboard/page.js
+
47
−
16
View file @
8b2eb1ec
...
...
@@ -2,24 +2,55 @@
import
"
bootstrap/dist/css/bootstrap.min.css
"
import
Accordion
from
'
react-bootstrap/Accordion
'
;
import
Form
from
'
react-bootstrap/Form
'
;
import
Nav
from
'
react-bootstrap/Nav
'
;
import
Button
from
'
react-bootstrap/Button
'
;
function
BasicExample
()
{
function
studentDashboard
()
{
return
(
<
Accordion
defaultActiveKey
=
"
0
"
>
<
Accordion
.
Item
eventKey
=
"
0
"
>
<
Accordion
.
Header
>
Language
Skill
<
/Accordion.Header
>
<
Accordion
.
Body
>
I
can
speak
english
natively
and
achieved
an
A
*
at
GCSE
french
<
/Accordion.Body
>
<
/Accordion.Item
>
<
Accordion
.
Item
eventKey
=
"
1
"
>
<
Accordion
.
Header
>
Profient
in
Maths
<
/Accordion.Header
>
<
Accordion
.
Body
>
Maths
Grade
A
in
ALevels
<
/Accordion.Body
>
<
/Accordion.Item
>
<
/Accordion
>
<
main
className
=
"
studentDashboard
"
>
<
Nav
fill
className
=
"
justify-content-center
"
activeKey
=
"
/home
"
>
<
Nav
.
Item
>
<
h6
>
3
Requirement
Matched
<
/h6
>
<
/Nav.Item
>
<
Nav
.
Item
>
<
h4
>
Your
Application
<
/h4
>
<
/Nav.Item
>
<
Nav
.
Item
>
<
Nav
.
Link
eventKey
=
"
link-2
"
>
Uplaod
CV
<
/Nav.Link
>
<
/Nav.Item
>
<
/Nav
>
<
Form
>
<
Accordion
defaultActiveKey
=
{[
'
0
'
]}
alwaysOpen
>
<
Accordion
.
Item
eventKey
=
"
0
"
>
<
Accordion
.
Header
>
Language
Skill
<
/Accordion.Header
>
<
Accordion
.
Body
>
<
Form
.
Group
className
=
"
mb-3
"
controlId
=
"
formGroupSkill1
"
>
<
Form
.
Control
as
=
"
textarea
"
rows
=
{
3
}
placeholder
=
"
Enter your evidence of the skill
"
/>
<
/Form.Group
>
<
/Accordion.Body
>
<
/Accordion.Item
>
<
Accordion
.
Item
eventKey
=
"
1
"
>
<
Accordion
.
Header
>
Profient
in
Maths
<
/Accordion.Header
>
<
Accordion
.
Body
>
<
Form
.
Group
className
=
"
mb-3
"
controlId
=
"
formGroupSkill2
"
>
<
Form
.
Label
>
Password
<
/Form.Label
>
<
Form
.
Control
as
=
"
textarea
"
rows
=
{
3
}
placeholder
=
"
Enter your evidence of the skill
"
/>
<
/Form.Group
>
<
/Accordion.Body
>
<
/Accordion.Item
>
<
/Accordion
>
<
/Form
>
<
Button
variant
=
"
primary
"
type
=
"
submit
"
>
Submit
<
/Button
>
<
/main
>
);
}
export
default
BasicExample
;
\ No newline at end of file
export
default
studentDashboard
;
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/app/studentDashboard/studentDashboard.css
+
3
−
25
View file @
8b2eb1ec
.accordion
{
background-color
:
#eee
;
color
:
#444
;
cursor
:
pointer
;
padding
:
18px
;
width
:
100%
;
text-align
:
left
;
border
:
none
;
outline
:
none
;
transition
:
0.4s
;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active
,
.accordion
:hover
{
background-color
:
#ccc
;
}
/* Style the accordion panel. Note: hidden by default */
.panel
{
padding
:
0
18px
;
background-color
:
white
;
max-height
:
0
;
overflow
:
hidden
;
transition
:
max-height
0.2s
ease-out
;
}
\ No newline at end of file
studentDashboard
{
margin
:
5px
;
}
\ No newline at end of file
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