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
00d09e01
Commit
00d09e01
authored
7 years ago
by
Palti Sinaga
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
profile
parent
492f0e69
master
No related merge requests found
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
69 additions
and
1 deletion
+69
-1
style.css
public/css/style.css
+8
-1
profiles.blade.php
resources/views/layouts/page/profiles.blade.php
+55
-0
profiles.blade.php
resources/views/profiles.blade.php
+2
-0
web.php
routes/web.php
+4
-0
No files found.
public/css/style.css
View file @
00d09e01
...
...
@@ -1275,7 +1275,7 @@ figure.effect-zoe:hover ul.social-icons a:first-child {
/*-- Cuisines --*/
.cuisines
{
padding
:
1
0px
0
;
padding
:
9
0px
0
;
}
/*--w3layouts--*/
...
...
@@ -1287,6 +1287,13 @@ figure.effect-zoe:hover ul.social-icons a:first-child {
margin-bottom
:
50px
;
color
:
#1dc8d9
;
}
.cuisines
h3
{
font-size
:
25px
;
font-weight
:
700
;
color
:
#1dc8d9
;
text-align
:
left
;
/*margin-left: 3px;*/
}
.cuisines
p
{
line-height
:
35px
;
...
...
This diff is collapsed.
Click to expand it.
resources/views/layouts/page/profiles.blade.php
0 → 100644
View file @
00d09e01
@
extends
(
'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/profiles.blade.php
0 → 100644
View file @
00d09e01
@
extends
(
'layouts.page.profiles'
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
routes/web.php
View file @
00d09e01
...
...
@@ -24,6 +24,10 @@ Route::get('homestay', function(){
return
view
(
'homestay'
);
});
Route
::
get
(
'profiles'
,
function
(){
return
view
(
'profiles'
);
});
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