Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Platform
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
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
Administrator
Platform
Commits
6c8d75b6
Commit
6c8d75b6
authored
Feb 15, 2015
by
Nicolas Widart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove laravel views
parent
91e5b441
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
0 additions
and
363 deletions
+0
-363
app.blade.php
resources/views/app.blade.php
+0
-62
login.blade.php
resources/views/auth/login.blade.php
+0
-63
password.blade.php
resources/views/auth/password.blade.php
+0
-50
register.blade.php
resources/views/auth/register.blade.php
+0
-65
reset.blade.php
resources/views/auth/reset.blade.php
+0
-59
password.blade.php
resources/views/emails/password.blade.php
+0
-1
home.blade.php
resources/views/home.blade.php
+0
-17
welcome.blade.php
resources/views/welcome.blade.php
+0
-46
No files found.
resources/views/app.blade.php
deleted
100644 → 0
View file @
91e5b441
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<title>
Laravel
</title>
<link
href=
"/css/app.css"
rel=
"stylesheet"
>
<!-- Fonts -->
<link
href=
'//fonts.googleapis.com/css?family=Roboto:400,300'
rel=
'stylesheet'
type=
'text/css'
>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav
class=
"navbar navbar-default"
>
<div
class=
"container-fluid"
>
<div
class=
"navbar-header"
>
<button
type=
"button"
class=
"navbar-toggle collapsed"
data-toggle=
"collapse"
data-target=
"#bs-example-navbar-collapse-1"
>
<span
class=
"sr-only"
>
Toggle Navigation
</span>
<span
class=
"icon-bar"
></span>
<span
class=
"icon-bar"
></span>
<span
class=
"icon-bar"
></span>
</button>
<a
class=
"navbar-brand"
href=
"#"
>
Laravel
</a>
</div>
<div
class=
"collapse navbar-collapse"
id=
"bs-example-navbar-collapse-1"
>
<ul
class=
"nav navbar-nav"
>
<li><a
href=
"/"
>
Home
</a></li>
</ul>
<ul
class=
"nav navbar-nav navbar-right"
>
@if (Auth::guest())
<li><a
href=
"/auth/login"
>
Login
</a></li>
<li><a
href=
"/auth/register"
>
Register
</a></li>
@else
<li
class=
"dropdown"
>
<a
href=
"#"
class=
"dropdown-toggle"
data-toggle=
"dropdown"
role=
"button"
aria-expanded=
"false"
>
{{ Auth::user()->name }}
<span
class=
"caret"
></span></a>
<ul
class=
"dropdown-menu"
role=
"menu"
>
<li><a
href=
"/auth/logout"
>
Logout
</a></li>
</ul>
</li>
@endif
</ul>
</div>
</div>
</nav>
@yield('content')
<!-- Scripts -->
<script
src=
"//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"
></script>
<script
src=
"//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.1/js/bootstrap.min.js"
></script>
</body>
</html>
resources/views/auth/login.blade.php
deleted
100644 → 0
View file @
91e5b441
@
extends
(
'app'
)
@
section
(
'content'
)
<
div
class
="
container
-
fluid
">
<div class="
row
">
<div class="
col
-
md
-
8
col
-
md
-
offset
-
2
">
<div class="
panel
panel
-
default
">
<div class="
panel
-
heading
">Login</div>
<div class="
panel
-
body
">
@if (count(
$errors
) > 0)
<div class="
alert
alert
-
danger
">
<strong>Whoops!</strong> There were some problems with your input.<br><br>
<ul>
@foreach (
$errors->all
() as
$error
)
<li>{{
$error
}}</li>
@endforeach
</ul>
</div>
@endif
<form class="
form
-
horizontal
" role="
form
" method="
POST
" action="
/
auth
/
login
">
<input type="
hidden
" name="
_token
" value="
{{
csrf_token
()
}}
">
<div class="
form
-
group
">
<label class="
col
-
md
-
4
control
-
label
">E-Mail Address</label>
<div class="
col
-
md
-
6
">
<input type="
email
" class="
form
-
control
" name="
email
" value="
{{
old
(
'email'
)
}}
">
</div>
</div>
<div class="
form
-
group
">
<label class="
col
-
md
-
4
control
-
label
">Password</label>
<div class="
col
-
md
-
6
">
<input type="
password
" class="
form
-
control
" name="
password
">
</div>
</div>
<div class="
form
-
group
">
<div class="
col
-
md
-
6
col
-
md
-
offset
-
4
">
<div class="
checkbox
">
<label>
<input type="
checkbox
" name="
remember
"> Remember Me
</label>
</div>
</div>
</div>
<div class="
form
-
group
">
<div class="
col
-
md
-
6
col
-
md
-
offset
-
4
">
<button type="
submit
" class="
btn
btn
-
primary
" style="
margin
-
right
:
15
px
;
">
Login
</button>
<a href="
/
password
/
email
">Forgot Your Password?</a>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
@endsection
resources/views/auth/password.blade.php
deleted
100644 → 0
View file @
91e5b441
@
extends
(
'app'
)
@
section
(
'content'
)
<
div
class
="
container
-
fluid
">
<div class="
row
">
<div class="
col
-
md
-
8
col
-
md
-
offset
-
2
">
<div class="
panel
panel
-
default
">
<div class="
panel
-
heading
">Reset Password</div>
<div class="
panel
-
body
">
@if (session('status'))
<div class="
alert
alert
-
success
">
{{ session('status') }}
</div>
@endif
@if (count(
$errors
) > 0)
<div class="
alert
alert
-
danger
">
<strong>Whoops!</strong> There were some problems with your input.<br><br>
<ul>
@foreach (
$errors->all
() as
$error
)
<li>{{
$error
}}</li>
@endforeach
</ul>
</div>
@endif
<form class="
form
-
horizontal
" role="
form
" method="
POST
" action="
/
password
/
email
">
<input type="
hidden
" name="
_token
" value="
{{
csrf_token
()
}}
">
<div class="
form
-
group
">
<label class="
col
-
md
-
4
control
-
label
">E-Mail Address</label>
<div class="
col
-
md
-
6
">
<input type="
email
" class="
form
-
control
" name="
email
" value="
{{
old
(
'email'
)
}}
">
</div>
</div>
<div class="
form
-
group
">
<div class="
col
-
md
-
6
col
-
md
-
offset
-
4
">
<button type="
submit
" class="
btn
btn
-
primary
">
Send Password Reset Link
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
@endsection
resources/views/auth/register.blade.php
deleted
100644 → 0
View file @
91e5b441
@
extends
(
'app'
)
@
section
(
'content'
)
<
div
class
="
container
-
fluid
">
<div class="
row
">
<div class="
col
-
md
-
8
col
-
md
-
offset
-
2
">
<div class="
panel
panel
-
default
">
<div class="
panel
-
heading
">Register</div>
<div class="
panel
-
body
">
@if (count(
$errors
) > 0)
<div class="
alert
alert
-
danger
">
<strong>Whoops!</strong> There were some problems with your input.<br><br>
<ul>
@foreach (
$errors->all
() as
$error
)
<li>{{
$error
}}</li>
@endforeach
</ul>
</div>
@endif
<form class="
form
-
horizontal
" role="
form
" method="
POST
" action="
/
auth
/
register
">
<input type="
hidden
" name="
_token
" value="
{{
csrf_token
()
}}
">
<div class="
form
-
group
">
<label class="
col
-
md
-
4
control
-
label
">Name</label>
<div class="
col
-
md
-
6
">
<input type="
text
" class="
form
-
control
" name="
name
" value="
{{
old
(
'name'
)
}}
">
</div>
</div>
<div class="
form
-
group
">
<label class="
col
-
md
-
4
control
-
label
">E-Mail Address</label>
<div class="
col
-
md
-
6
">
<input type="
email
" class="
form
-
control
" name="
email
" value="
{{
old
(
'email'
)
}}
">
</div>
</div>
<div class="
form
-
group
">
<label class="
col
-
md
-
4
control
-
label
">Password</label>
<div class="
col
-
md
-
6
">
<input type="
password
" class="
form
-
control
" name="
password
">
</div>
</div>
<div class="
form
-
group
">
<label class="
col
-
md
-
4
control
-
label
">Confirm Password</label>
<div class="
col
-
md
-
6
">
<input type="
password
" class="
form
-
control
" name="
password_confirmation
">
</div>
</div>
<div class="
form
-
group
">
<div class="
col
-
md
-
6
col
-
md
-
offset
-
4
">
<button type="
submit
" class="
btn
btn
-
primary
">
Register
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
@endsection
resources/views/auth/reset.blade.php
deleted
100644 → 0
View file @
91e5b441
@
extends
(
'app'
)
@
section
(
'content'
)
<
div
class
="
container
-
fluid
">
<div class="
row
">
<div class="
col
-
md
-
8
col
-
md
-
offset
-
2
">
<div class="
panel
panel
-
default
">
<div class="
panel
-
heading
">Reset Password</div>
<div class="
panel
-
body
">
@if (count(
$errors
) > 0)
<div class="
alert
alert
-
danger
">
<strong>Whoops!</strong> There were some problems with your input.<br><br>
<ul>
@foreach (
$errors->all
() as
$error
)
<li>{{
$error
}}</li>
@endforeach
</ul>
</div>
@endif
<form class="
form
-
horizontal
" role="
form
" method="
POST
" action="
/
password
/
reset
">
<input type="
hidden
" name="
_token
" value="
{{
csrf_token
()
}}
">
<input type="
hidden
" name="
token
" value="
{{
$token
}}
">
<div class="
form
-
group
">
<label class="
col
-
md
-
4
control
-
label
">E-Mail Address</label>
<div class="
col
-
md
-
6
">
<input type="
email
" class="
form
-
control
" name="
email
" value="
{{
old
(
'email'
)
}}
">
</div>
</div>
<div class="
form
-
group
">
<label class="
col
-
md
-
4
control
-
label
">Password</label>
<div class="
col
-
md
-
6
">
<input type="
password
" class="
form
-
control
" name="
password
">
</div>
</div>
<div class="
form
-
group
">
<label class="
col
-
md
-
4
control
-
label
">Confirm Password</label>
<div class="
col
-
md
-
6
">
<input type="
password
" class="
form
-
control
" name="
password_confirmation
">
</div>
</div>
<div class="
form
-
group
">
<div class="
col
-
md
-
6
col
-
md
-
offset
-
4
">
<button type="
submit
" class="
btn
btn
-
primary
">
Reset Password
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
@endsection
resources/views/emails/password.blade.php
deleted
100644 → 0
View file @
91e5b441
Click
here
to
reset
your
password
:
{{
url
(
'password/reset/'
.
$token
)
}}
resources/views/home.blade.php
deleted
100644 → 0
View file @
91e5b441
@
extends
(
'app'
)
@
section
(
'content'
)
<
div
class
="
container
">
<div class="
row
">
<div class="
col
-
md
-
10
col
-
md
-
offset
-
1
">
<div class="
panel
panel
-
default
">
<div class="
panel
-
heading
">Home</div>
<div class="
panel
-
body
">
You are logged in!
</div>
</div>
</div>
</div>
</div>
@endsection
resources/views/welcome.blade.php
deleted
100644 → 0
View file @
91e5b441
<html>
<head>
<link
href=
'//fonts.googleapis.com/css?family=Lato:100'
rel=
'stylesheet'
type=
'text/css'
>
<style>
body
{
margin
:
0
;
padding
:
0
;
width
:
100%
;
height
:
100%
;
color
:
#B0BEC5
;
display
:
table
;
font-weight
:
100
;
font-family
:
'Lato'
;
}
.container
{
text-align
:
center
;
display
:
table-cell
;
vertical-align
:
middle
;
}
.content
{
text-align
:
center
;
display
:
inline-block
;
}
.title
{
font-size
:
96px
;
margin-bottom
:
40px
;
}
.quote
{
font-size
:
24px
;
}
</style>
</head>
<body>
<div
class=
"container"
>
<div
class=
"content"
>
<div
class=
"title"
>
Laravel 5
</div>
<div
class=
"quote"
>
{{ Inspiring::quote() }}
</div>
</div>
</div>
</body>
</html>
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