Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
CO-OP Search
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kittisak Maneewong
CO-OP Search
Commits
39937d47
Commit
39937d47
authored
Apr 06, 2019
by
Kittisak Maneewong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update login
parent
caa1a8dc
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
62 additions
and
34 deletions
+62
-34
app.js
public/js/app.js
+0
-0
Login.vue
resources/js/views/Login.vue
+62
-34
No files found.
public/js/app.js
View file @
39937d47
This diff is collapsed.
Click to expand it.
resources/js/views/Login.vue
View file @
39937d47
...
@@ -2,58 +2,48 @@
...
@@ -2,58 +2,48 @@
<div>
<div>
<v-container
grid-list-md
text-xs-center
>
<v-container
grid-list-md
text-xs-center
>
<v-layout
row
wrap
>
<v-layout
row
wrap
>
<v-flex
xs12
sm4
offset-sm1
align-center
py-2
>
<v-flex
xs12
sm4
offset-sm1
align-center
>
<v-form
@
submit
.
prevent=
"login()"
>
<div
class=
"text-sm-left mb-4"
>
<div
class=
"text-sm-left"
>
<span
class=
"headline font-weight-bold"
>
เข้าสู่ระบบ
</span>
<span
class=
"headline font-weight-bold"
>
เข้าสู่ระบบ
</span>
</div>
</div>
<v-form
@
submit
.
prevent=
"login()"
>
<v-text-field
<v-text-field
label=
"อีเมล"
label=
"อีเมล"
prepend-inner-icon=
"email"
prepend-inner-icon=
"email"
color=
"primary"
color=
"primary"
class=
"fix-size red--text"
class=
"fix-size red--text"
type=
"email"
type=
"email"
v-model=
"
user
.email"
v-model=
"
loginData
.email"
></v-text-field>
></v-text-field>
<v-text-field
<v-text-field
label=
"รหัสผ่าน"
label=
"รหัสผ่าน"
type=
"password"
type=
"password"
color=
"primary"
color=
"primary"
prepend-inner-icon=
"lock"
prepend-inner-icon=
"lock"
v-model=
"
user
.password"
v-model=
"
loginData
.password"
></v-text-field>
></v-text-field>
<p
class=
"text-xs-right"
><
a
href=
"#"
class=
"body-2 font-weight-medium"
>
ลืมรหัสผ่าน?
</a
></p>
<p
class=
"text-xs-right"
><
router-link
to=
"/"
class=
"body-2 font-weight-medium"
>
ลืมรหัสผ่าน?
</router-link
></p>
<v-btn
color=
"blue"
block
dark
large
type=
"submit"
>
เข้าสู่ระบบ
</v-btn>
<v-btn
color=
"blue"
large
dark
block
type=
"submit"
>
เข้าสู่ระบบ
</v-btn>
</v-form>
</v-form>
<v-layout
row
wrap
align-center
justify-center
>
<div
class=
"my-3"
><span
class=
"font-weight-bold"
>
หรือ
</span></div>
<v-flex
sm5
>
<v-divider></v-divider>
</v-flex>
<v-flex
sm2
>
หรือ
</v-flex>
<v-flex
sm5
>
<v-divider></v-divider>
</v-flex>
</v-layout>
<v-layout
row
wrap
>
<v-flex
sm6
>
<v-btn
color=
"primary"
block
><v-icon>
fab fa-facebook
</v-icon>
เข้าสู่ระบบ Facebook
</v-btn>
<v-btn
color=
"primary"
block
><v-icon>
fab fa-facebook
</v-icon>
เข้าสู่ระบบ Facebook
</v-btn>
</v-flex>
<v-flex
sm6
>
<v-btn
color=
"deep-orange"
class=
"white--text"
block
><v-icon>
fab fa-google
</v-icon>
เข้าสู่ระบบ Google
</v-btn>
<v-btn
color=
"deep-orange"
class=
"white--text"
block
><v-icon>
fab fa-google
</v-icon>
เข้าสู่ระบบ Google
</v-btn>
</v-flex>
</v-flex>
<v-flex
sm2
xs12
>
<v-layout
justify-center
fill-height
>
<v-divider
vertical
inset
></v-divider>
</v-layout>
</v-layout>
</v-flex>
</v-flex>
<v-flex
sm4
offset-sm1
xs12
align-center
py-2
>
<v-flex
sm4
xs12
align-center
>
<div
class=
"text-sm-left"
>
<div
class=
"text-sm-left
mb-4
"
>
<span
class=
"headline font-weight-bold"
>
สมัครสมาชิก
</span>
<span
class=
"headline font-weight-bold"
>
สมัครสมาชิก
</span>
</div>
</div>
<v-form
@
submit
.
prevent=
"register()"
>
<v-layout
row
wrap
>
<v-layout
row
wrap
>
<v-flex
sm6
xs12
>
<v-flex
sm6
xs12
>
<v-text-field
<v-text-field
label=
"ชื่อ"
label=
"ชื่อ"
v-model=
"ชื่อ
"
v-model=
"registerData.first_name
"
clearable
clearable
required
required
class=
"fix-size"
class=
"fix-size"
...
@@ -62,7 +52,7 @@
...
@@ -62,7 +52,7 @@
<v-flex
sm6
xs12
>
<v-flex
sm6
xs12
>
<v-text-field
<v-text-field
label=
"นามสกุล"
label=
"นามสกุล"
v-model=
"นามสกุล
"
v-model=
"registerData.last_name
"
clearable
clearable
required
required
class=
"fix-size"
class=
"fix-size"
...
@@ -71,14 +61,14 @@
...
@@ -71,14 +61,14 @@
</v-layout>
</v-layout>
<v-text-field
<v-text-field
label=
"อีเมล"
label=
"อีเมล"
v-model=
"อีเมล
"
v-model=
"registerData.email
"
clearable
clearable
required
required
class=
"fix-size"
class=
"fix-size"
></v-text-field>
></v-text-field>
<v-text-field
<v-text-field
label=
"รหัสผ่าน"
label=
"รหัสผ่าน"
v-model=
"รหัสผ่าน
"
v-model=
"registerData.password
"
clearable
clearable
type=
"password"
type=
"password"
required
required
...
@@ -86,14 +76,14 @@
...
@@ -86,14 +76,14 @@
></v-text-field>
></v-text-field>
<v-text-field
<v-text-field
label=
"ยืนยันรหัสผ่าน"
label=
"ยืนยันรหัสผ่าน"
v-model=
"ยืนยันรหัสผ่าน
"
v-model=
"registerData.password_confirmation
"
clearable
clearable
type=
"password"
type=
"password"
required
required
class=
"fix-size"
class=
"fix-size"
></v-text-field>
></v-text-field>
<v-btn
color=
"red accent-3"
block
dark
large
>
สมัครสมาชิก
</v-btn>
<v-btn
color=
"red accent-3 my-4"
block
dark
large
type=
"submit"
>
สมัครสมาชิก
</v-btn>
</v-form>
</v-flex>
</v-flex>
</v-layout>
</v-layout>
</v-container>
</v-container>
...
@@ -104,17 +94,55 @@
...
@@ -104,17 +94,55 @@
export
default
{
export
default
{
data
()
{
data
()
{
return
{
return
{
user
:
{
loginData
:
{
email
:
''
,
email
:
''
,
password
:
''
password
:
''
},
registerData
:
{
first_name
:
''
,
last_name
:
''
,
email
:
''
,
password
:
''
,
password_confirmation
:
''
}
}
}
}
},
},
methods
:
{
methods
:
{
login
()
{
login
()
{
console
.
log
(
'login'
)
axios
.
post
(
'/login'
,
this
.
loginData
)
axios
.
post
(
'/login'
,
this
.
user
)
.
then
((
res
)
=>
{
console
.
log
(
res
)
console
.
log
(
res
.
body
)
this
.
$router
.
push
(
'/'
)
})
.
catch
((
err
)
=>
{
console
.
log
(
err
.
response
)
})
},
register
()
{
axios
.
post
(
'/register'
,
{
name
:
this
.
registerData
.
first_name
+
' '
+
this
.
registerData
.
last_name
,
email
:
this
.
registerData
.
email
,
password
:
this
.
registerData
.
password
,
password_confirmation
:
this
.
registerData
.
password_confirmation
})
.
then
((
res
)
=>
{
this
.
$router
.
push
(
'/account'
);
console
.
log
(
res
)
})
.
catch
((
err
)
=>
{
console
.
log
(
err
.
response
)
})
}
}
},
mounted
()
{
axios
.
get
(
'api/user'
)
.
then
((
res
)
=>
{
console
.
log
(
res
.
body
)
})
.
catch
((
err
)
=>
{
console
.
log
(
err
.
response
)
})
}
}
}
}
</
script
>
</
script
>
...
...
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