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
b9974523
Commit
b9974523
authored
Dec 01, 2020
by
quentin.vrel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
redirection from login to home
parent
7e9e3db3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
9 deletions
+16
-9
Login.vue
frontend/src/views/Login.vue
+16
-9
No files found.
frontend/src/views/Login.vue
View file @
b9974523
<
template
>
<div
class=
"login-page"
>
<page-title
pagetitle=
"Se Connecter"
/>
<form
action=
"#"
>
<text-input
id=
"mail"
label=
"Email"
/>
<pwd-input
id=
"password"
label=
"Mot de passe"
/>
<checkbox-input
id=
"remember"
label=
"Se souvenir de moi"
/>
<form
action=
"#"
@
submit
.
prevent=
"onSubmit"
>
<div
class=
"form-content"
>
<text-input
id=
"mail"
label=
"Email"
/>
<pwd-input
id=
"password"
label=
"Mot de passe"
/>
<checkbox-input
id=
"remember"
label=
"Se souvenir de moi"
/>
</div>
<svg-button
svg=
"/icons/back.svg"
/>
<svg-button
svg=
"/icons/validate.svg"
/>
</form>
<svg-button
svg=
"/icons/back.svg"
/>
<svg-button
svg=
"/icons/validate.svg"
/>
</div>
</
template
>
...
...
@@ -27,6 +29,11 @@ export default {
TextInput
,
PwdInput
,
CheckboxInput
},
methods
:
{
onSubmit
:
function
(){
this
.
$router
.
push
(
'Home'
);
}
}
}
</
script
>
...
...
@@ -37,7 +44,7 @@ export default {
position
:
relative
;
}
.login-page
>
form
{
.login-page
.form-content
{
flex-direction
:
column
;
display
:
flex
;
width
:
900px
;
...
...
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