Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
K
kiaisoft_tuananh_nuxt
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Boards
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
TTS Tran Viet Anh
kiaisoft_tuananh_nuxt
Commits
dda1f1e8
Commit
dda1f1e8
authored
Feb 04, 2023
by
TTS Kieu Tuan Anh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix theme login
parent
4025884b
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
62 additions
and
53 deletions
+62
-53
empty.vue
layouts/empty.vue
+7
-3
login.vue
pages/login.vue
+52
-48
register.vue
pages/register.vue
+3
-2
No files found.
layouts/empty.vue
View file @
dda1f1e8
<
template
>
<
template
>
<v-app>
<Nuxt
/>
<Nuxt
/>
</v-app>
</
template
>
</
template
>
<
script
>
<
script
>
export
default
{}
export
default
{
computed
:
{
theme
()
{
return
(
this
.
$vuetify
.
theme
.
dark
)
?
'
dark
'
:
'
light
'
}
}
}
</
script
>
</
script
>
pages/login.vue
View file @
dda1f1e8
<
template
>
<
template
>
<v-app
:style=
"
{background: $vuetify.theme.themes.light.background}">
<div
class=
"body"
>
<div
class=
"body"
>
<form
class=
"login-form"
>
<form
class=
"login-form"
>
<NuxtLogo
/>
<NuxtLogo
/>
...
@@ -24,7 +25,7 @@
...
@@ -24,7 +25,7 @@
/>
/>
<v-checkbox
<v-checkbox
v-model=
"checkbox"
v-model=
"checkbox"
:error-messages=
"checkboxErrors
"
color=
"green
"
label=
"Remember me"
label=
"Remember me"
required
required
@
change=
"$v.checkbox.$touch()"
@
change=
"$v.checkbox.$touch()"
...
@@ -44,6 +45,7 @@
...
@@ -44,6 +45,7 @@
</p>
</p>
</form>
</form>
</div>
</div>
</v-app>
</
template
>
</
template
>
<
script
>
<
script
>
export
default
{
export
default
{
...
@@ -56,6 +58,7 @@ import { validationMixin } from 'vuelidate'
...
@@ -56,6 +58,7 @@ import { validationMixin } from 'vuelidate'
import
{
required
,
minLength
,
email
}
from
'
vuelidate/lib/validators
'
import
{
required
,
minLength
,
email
}
from
'
vuelidate/lib/validators
'
export
default
{
export
default
{
dark
:
false
,
mixins
:
[
validationMixin
],
mixins
:
[
validationMixin
],
layout
:
'
empty
'
,
layout
:
'
empty
'
,
validations
:
{
validations
:
{
...
@@ -143,21 +146,22 @@ export default {
...
@@ -143,21 +146,22 @@ export default {
}
}
}
}
</
script
>
</
script
>
<
style
>
<
style
scoped
>
.body
{
.body
{
display
:
flex
;
display
:
flex
;
justify-content
:
center
;
justify-content
:
center
;
text-align
:
center
;
text-align
:
center
;
align-items
:
center
;
align-items
:
center
;
background-color
:
#
2c2c2c
;
background-color
:
#
8fc2ff
;
height
:
100vh
;
height
:
100vh
;
}
}
.login-form
{
.login-form
{
width
:
27%
;
width
:
27%
;
border
:
#8fc2ff
1px
solid
;
border
:
#8fc2ff
1px
solid
;
background-color
:
#1
21212
;
background-color
:
#1
11f70
;
border-radius
:
1rem
;
border-radius
:
1rem
;
padding
:
2rem
1rem
;
padding
:
2rem
1rem
;
border-radius
:
1rem
;
border-radius
:
1rem
;
}
}
</
style
>
</
style
>
pages/register.vue
View file @
dda1f1e8
...
@@ -64,6 +64,7 @@ import { validationMixin } from 'vuelidate'
...
@@ -64,6 +64,7 @@ import { validationMixin } from 'vuelidate'
import
{
required
,
minLength
,
maxLength
,
email
,
sameAs
}
from
'
vuelidate/lib/validators
'
import
{
required
,
minLength
,
maxLength
,
email
,
sameAs
}
from
'
vuelidate/lib/validators
'
export
default
{
export
default
{
dark
:
false
,
mixins
:
[
validationMixin
],
mixins
:
[
validationMixin
],
layout
:
'
empty
'
,
layout
:
'
empty
'
,
validations
:
{
validations
:
{
...
@@ -164,13 +165,13 @@ export default {
...
@@ -164,13 +165,13 @@ export default {
justify-content
:
center
;
justify-content
:
center
;
text-align
:
center
;
text-align
:
center
;
align-items
:
center
;
align-items
:
center
;
background-color
:
#
2c2c2c
;
background-color
:
#
8fc2ff
;
height
:
100vh
;
height
:
100vh
;
}
}
.login-form
{
.login-form
{
width
:
27%
;
width
:
27%
;
border
:
#8fc2ff
1px
solid
;
border
:
#8fc2ff
1px
solid
;
background-color
:
#1
21212
;
background-color
:
#1
11f70
;
border-radius
:
1rem
;
border-radius
:
1rem
;
padding
:
2rem
1rem
;
padding
:
2rem
1rem
;
border-radius
:
1rem
;
border-radius
:
1rem
;
...
...
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