Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pa2d4ti06
Project
Overview
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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Juliper
pa2d4ti06
Commits
ac5fe80d
Commit
ac5fe80d
authored
7 years ago
by
Juliper
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://gitlab.del.ac.id/juliper19/pa2d4ti06
parents
6423d631
34aa18b3
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
101 additions
and
8 deletions
+101
-8
style.css
public/css/style.css
+8
-1
homestay.blade.php
resources/views/homestay.blade.php
+2
-2
index.blade.php
resources/views/index.blade.php
+1
-1
profiles.blade.php
resources/views/profiles.blade.php
+1
-0
master.blade.php
resources/views/vendor/adminlte/layouts/master.blade.php
+21
-0
Home.blade.php
resources/views/vendor/adminlte/layouts/pages/Home.blade.php
+2
-2
Homestay.blade.php
...es/views/vendor/adminlte/layouts/pages/Homestay.blade.php
+1
-1
profiles.blade.php
...es/views/vendor/adminlte/layouts/pages/profiles.blade.php
+55
-0
htmlheader.blade.php
...s/vendor/adminlte/layouts/partialweb/htmlheader.blade.php
+0
-0
mainfooter.blade.php
...s/vendor/adminlte/layouts/partialweb/mainfooter.blade.php
+0
-0
mainheader.blade.php
...s/vendor/adminlte/layouts/partialweb/mainheader.blade.php
+1
-1
scripts.blade.php
...iews/vendor/adminlte/layouts/partialweb/scripts.blade.php
+0
-0
slider.blade.php
...views/vendor/adminlte/layouts/partialweb/slider.blade.php
+0
-0
web.php
routes/web.php
+9
-0
No files found.
public/css/style.css
View file @
ac5fe80d
...
@@ -1275,7 +1275,7 @@ figure.effect-zoe:hover ul.social-icons a:first-child {
...
@@ -1275,7 +1275,7 @@ figure.effect-zoe:hover ul.social-icons a:first-child {
/*-- Cuisines --*/
/*-- Cuisines --*/
.cuisines
{
.cuisines
{
padding
:
1
0px
0
;
padding
:
9
0px
0
;
}
}
/*--w3layouts--*/
/*--w3layouts--*/
...
@@ -1287,6 +1287,13 @@ figure.effect-zoe:hover ul.social-icons a:first-child {
...
@@ -1287,6 +1287,13 @@ figure.effect-zoe:hover ul.social-icons a:first-child {
margin-bottom
:
50px
;
margin-bottom
:
50px
;
color
:
#1dc8d9
;
color
:
#1dc8d9
;
}
}
.cuisines
h3
{
font-size
:
25px
;
font-weight
:
700
;
color
:
#1dc8d9
;
text-align
:
left
;
/*margin-left: 3px;*/
}
.cuisines
p
{
.cuisines
p
{
line-height
:
35px
;
line-height
:
35px
;
...
...
This diff is collapsed.
Click to expand it.
resources/views/homestay.blade.php
View file @
ac5fe80d
@
extends
(
'layouts.page.Homestay'
)
@
extends
(
'adminlte::layouts.pages.Homestay'
)
\ No newline at end of file
\ No newline at end of file
This diff is collapsed.
Click to expand it.
resources/views/index.blade.php
View file @
ac5fe80d
@
extends
(
'
layouts.page
.Home'
)
@
extends
(
'
adminlte::layouts.pages
.Home'
)
This diff is collapsed.
Click to expand it.
resources/views/profiles.blade.php
0 → 100644
View file @
ac5fe80d
@
extends
(
'adminlte::layouts.pages.profiles'
)
This diff is collapsed.
Click to expand it.
resources/views/vendor/adminlte/layouts/master.blade.php
0 → 100644
View file @
ac5fe80d
<!DOCTYPE html>
<!--
This is a starter template page. Use this page to start your new project from
scratch. This page gets rid of all links and provides the needed markup only.
-->
<html
lang=
"en"
>
@section('adminlte::layouts.partialweb.htmlheader')
@include('adminlte::layouts.partialweb.htmlheader')
@show
<body>
@include('adminlte::layouts.partialweb..mainheader')
@yield('main-content')
@include('adminlte::layouts.partialweb..mainfooter')
@include('adminlte::layouts.partialweb..scripts')
</body>
</html>
This diff is collapsed.
Click to expand it.
resources/views/
layouts/page
/Home.blade.php
→
resources/views/
vendor/adminlte/layouts/pages
/Home.blade.php
View file @
ac5fe80d
@
extends
(
'layouts.master'
)
@
extends
(
'
adminlte::
layouts.master'
)
@
section
(
'main-content'
)
@
section
(
'main-content'
)
@
include
(
'
layouts.partials
.slider'
)
<
br
>
@
include
(
'
adminlte::layouts.partialweb
.slider'
)
<
br
>
<!--
Welcome
-->
<!--
Welcome
-->
<
div
class
="
footer2
agileits
w3layouts
">
<
div
class
="
footer2
agileits
w3layouts
">
<div class="
container
">
<div class="
container
">
...
...
This diff is collapsed.
Click to expand it.
resources/views/
layouts/page
/Homestay.blade.php
→
resources/views/
vendor/adminlte/layouts/pages
/Homestay.blade.php
View file @
ac5fe80d
@
extends
(
'layouts.master'
)
@
extends
(
'
adminlte::
layouts.master'
)
@
section
(
'main-content'
)
@
section
(
'main-content'
)
<!--
Banner
-->
<!--
Banner
-->
<
div
class
="
banner
agileits
w3layouts
">
<
div
class
="
banner
agileits
w3layouts
">
...
...
This diff is collapsed.
Click to expand it.
resources/views/vendor/adminlte/layouts/pages/profiles.blade.php
0 → 100644
View file @
ac5fe80d
@
extends
(
'adminlte::layouts.master'
)
@
section
(
'main-content'
)
<
div
class
="
cuisines
agileits
w3layouts
" style="
padding
-
top
:
50
px
;
margin
-
top
:
40
px
;
">
<div class="
container
">
<div class="
col
-
md
-
4
col
-
sm
-
4
cuisines
-
grids
agileits
w3layouts
cuisines
-
grids
-
2
wow
slideInRight
">
<img src="
img
/
avatar3
.
png
" alt="
Agileits
W3layouts
">
<h2 style="
text
-
align
:
center
;
margin
-
top
:
3
px
;
"> Palti Sinaga </h2>
</div>
<div class="
col
-
md
-
8
col
-
sm
-
8
cuisines
-
grids
agileits
w3layouts
cuisines
-
grids
-
1
wow
slideInLeft
">
<h3>Data Diri</h3>
<table class="
table
-
condensed
" style="
font
-
size
:
16
px
;
margin
-
left
:
-
3
px
;
color
:
#777">
<
tr
>
<
td
>
Tempat
/
Tanggal
Lahir
</
td
>
<
td
>
Palti
Sinaga
</
td
>
</
tr
>
<
tr
>
<
td
>
Kelaasdas
</
td
>
<
td
>
test
</
td
>
</
tr
>
<
tr
>
<
td
>
Tempaasfasdt
/
Tanggal
Lahir
</
td
>
<
td
>
Palti
Sinaga
</
td
>
</
tr
>
<
tr
>
<
td
>
Kelasdas
</
td
>
<
td
>
test
</
td
>
</
tr
>
<
tr
>
<
td
>
Tempaqwdat
/
Tanggal
Lahir
</
td
>
<
td
>
Palti
Sinaga
</
td
>
</
tr
>
<
tr
>
<
td
>
Keasddlas
</
td
>
<
td
>
test
</
td
>
</
tr
>
</
table
>
<
br
><
br
>
<
h3
>
Testimoni
</
h3
>
<
p
>
Lorem
ipsum
dolor
sit
amet
,
consectetur
adipisicing
elit
,
sed
do
eiusmod
tempor
incididunt
ut
labore
et
dolore
magna
aliqua
.
Ut
enim
ad
minim
veniam
,
quis
nostrud
exercitation
ullamco
laboris
nisi
ut
aliquip
ex
ea
commodo
consequat
.
Duis
aute
irure
dolor
in
reprehenderit
in
voluptate
velit
esse
cillum
dolore
eu
fugiat
nulla
pariatur
.
Excepteur
sint
occaecat
cupidatat
non
proident
,
sunt
in
culpa
qui
officia
deserunt
mollit
anim
id
est
laborum
.</
p
>
<
div
class
="
services
agileits
w3layouts
" style="
background
-
color
:
#fff; padding: 1px 1px 1px 0px; margin-top: 30px;">
<
a
class
="
agileits
w3layoutswow
slideInLeft
" href="
gallery
.
html
" >Edit Profile <span class="
glyphicon
agileits
w3layouts
glyphicon
-
arrow
-
right
" aria-hidden="
true
"></span></a>
<a class="
agileits
w3layoutswow
slideInLeft
" href="
gallery
.
html
">History <span class="
glyphicon
agileits
w3layouts
glyphicon
-
arrow
-
right
" aria-hidden="
true
"></span></a>
</div>
</div>
<div class="
clearfix
"></div>
</div>
</div>
@endsection
\ No newline at end of file
This diff is collapsed.
Click to expand it.
resources/views/
layouts/partials
/htmlheader.blade.php
→
resources/views/
vendor/adminlte/layouts/partialweb
/htmlheader.blade.php
View file @
ac5fe80d
File moved
This diff is collapsed.
Click to expand it.
resources/views/
layouts/partials
/mainfooter.blade.php
→
resources/views/
vendor/adminlte/layouts/partialweb
/mainfooter.blade.php
View file @
ac5fe80d
File moved
This diff is collapsed.
Click to expand it.
resources/views/
layouts/partials
/mainheader.blade.php
→
resources/views/
vendor/adminlte/layouts/partialweb
/mainheader.blade.php
View file @
ac5fe80d
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
<li
class=
"active"
><a
href=
"index.html"
>
HOME
</a></li>
<li
class=
"active"
><a
href=
"index.html"
>
HOME
</a></li>
<li><a
href=
"#2"
>
DAFTAR HOMESTAY
</a></li>
<li><a
href=
"#2"
>
DAFTAR HOMESTAY
</a></li>
<li><a
href=
"#3"
>
LOKASI
</a></li>
<li><a
href=
"#3"
>
LOKASI
</a></li>
<li><a
href=
"gallery.html"
>
GALLERY
</a></li>
<li><a
href=
"gallery.html"
>
PROFILE
</a></li>
<!-- <li><a href="codes.html">CODES</a></li> -->
<!-- <li><a href="codes.html">CODES</a></li> -->
<!-- <li><a href="booking.html">BOOKING</a></li> -->
<!-- <li><a href="booking.html">BOOKING</a></li> -->
</ul>
</ul>
...
...
This diff is collapsed.
Click to expand it.
resources/views/
layouts/partials
/scripts.blade.php
→
resources/views/
vendor/adminlte/layouts/partialweb
/scripts.blade.php
View file @
ac5fe80d
File moved
This diff is collapsed.
Click to expand it.
resources/views/
layouts/partials
/slider.blade.php
→
resources/views/
vendor/adminlte/layouts/partialweb
/slider.blade.php
View file @
ac5fe80d
File moved
This diff is collapsed.
Click to expand it.
routes/web.php
View file @
ac5fe80d
...
@@ -24,6 +24,15 @@ Route::get('homestay', function(){
...
@@ -24,6 +24,15 @@ Route::get('homestay', function(){
return
view
(
'homestay'
);
return
view
(
'homestay'
);
});
});
Route
::
get
(
'profiles'
,
function
(){
return
view
(
'profiles'
);
});
Route
::
get
(
'loginc'
,
function
(){
return
view
(
'loginc'
);
});
Route
::
group
([
'middleware'
=>
'auth'
],
function
()
{
Route
::
group
([
'middleware'
=>
'auth'
],
function
()
{
...
...
This diff is collapsed.
Click to expand it.
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