Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
projet-cdaw
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Quentin Vrel
projet-cdaw
Commits
d24004db
Commit
d24004db
authored
Dec 01, 2020
by
Zohten
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gvipers.imt-lille-douai.fr/QVrel/projet-cdaw
parents
7573ddfb
c2db85c2
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
16 additions
and
4 deletions
+16
-4
.gitignore
frontend/.gitignore
+1
-1
background.png
frontend/public/background.png
+0
-0
back.svg
frontend/public/icons/back.svg
+3
-0
validate.svg
frontend/public/icons/validate.svg
+3
-0
App.vue
frontend/src/App.vue
+3
-1
Avatar.vue
frontend/src/components/Avatar.vue
+0
-1
UserRibbon.vue
frontend/src/components/UserRibbon.vue
+1
-1
index.js
frontend/src/router/index.js
+5
-0
No files found.
frontend/.gitignore
View file @
d24004db
.DS_Store
node_modules
#
node_modules
#/dist
...
...
frontend/public/background.png
0 → 100644
View file @
d24004db
This diff is collapsed.
Click to expand it.
frontend/public/icons/back.svg
0 → 100644
View file @
d24004db
<svg
width=
"90"
height=
"83"
viewBox=
"0 0 90 83"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M24.6669 3L4.00024 23.6667M4.00024 23.6667L24.6669 44.3333M4.00024 23.6667L76.6666 23.6667C82.1894 23.6667 86.6666 28.1439 86.6666 33.6667V70.5001C86.6666 76.0229 82.1894 80.5001 76.6666 80.5001H9.16659"
stroke=
"#CCCCCC"
stroke-width=
"5"
stroke-linecap=
"round"
/>
</svg>
\ No newline at end of file
frontend/public/icons/validate.svg
0 → 100644
View file @
d24004db
<svg
width=
"109"
height=
"109"
viewBox=
"0 0 109 109"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M30.6013 58.0656C29.625 57.0893 28.042 57.0893 27.0657 58.0656C26.0894 59.0419 26.0894 60.6248 27.0657 61.6011L30.6013 58.0656ZM44.3335 75.3334L42.5657 77.1011L44.3335 78.8689L46.1013 77.1011L44.3335 75.3334ZM82.2679 40.9345C83.2442 39.9581 83.2442 38.3752 82.2679 37.3989C81.2916 36.4226 79.7087 36.4226 78.7324 37.3989L82.2679 40.9345ZM27.0657 61.6011L42.5657 77.1011L46.1013 73.5656L30.6013 58.0656L27.0657 61.6011ZM46.1013 77.1011L82.2679 40.9345L78.7324 37.3989L42.5657 73.5656L46.1013 77.1011ZM54.6667 108.833C84.5821 108.833 108.833 84.5821 108.833 54.6667H103.833C103.833 81.8207 81.8207 103.833 54.6667 103.833V108.833ZM108.833 54.6667C108.833 24.7512 84.5821 0.5 54.6667 0.5V5.5C81.8207 5.5 103.833 27.5127 103.833 54.6667H108.833ZM54.6667 0.5C24.7512 0.5 0.5 24.7512 0.5 54.6667H5.5C5.5 27.5127 27.5127 5.5 54.6667 5.5V0.5ZM0.5 54.6667C0.5 84.5821 24.7512 108.833 54.6667 108.833V103.833C27.5127 103.833 5.5 81.8207 5.5 54.6667H0.5Z"
fill=
"#CCCCCC"
/>
</svg>
\ No newline at end of file
frontend/src/App.vue
View file @
d24004db
...
...
@@ -27,6 +27,8 @@
}
html
{
background-color
:
black
;
background-image
:
url("/background.png")
;
box-shadow
:
inset
0
0
1000px
#000000
;
height
:
100%
;
}
;
</
style
>
frontend/src/components/Avatar.vue
View file @
d24004db
...
...
@@ -80,7 +80,6 @@ export default {
}
},
isImage
()
{
console
.
log
(
"caca"
);
return
!
this
.
imgError
&&
Boolean
(
this
.
src
)
},
...
...
frontend/src/components/UserRibbon.vue
View file @
d24004db
...
...
@@ -12,7 +12,7 @@
import
Avatar
from
'@/components/Avatar.vue'
export
default
{
name
:
'
Home
'
,
name
:
'
UserRibbon
'
,
props
:
{
username
:
{
type
:
String
...
...
frontend/src/router/index.js
View file @
d24004db
...
...
@@ -17,6 +17,11 @@ const routes = [
// this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component
:
()
=>
import
(
/* webpackChunkName: "about" */
'../views/About.vue'
)
},
{
path
:
'/login'
,
name
:
'Login'
,
component
:
()
=>
import
(
'../views/Login.vue'
)
}
]
...
...
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