Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
Doorcode
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
5
Issues
5
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Guardians of the Kretschmar Elock System
Doorcode
Commits
a0363c55
Commit
a0363c55
authored
Jul 04, 2020
by
Jacob Priddy
👌
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
about page!
parent
1bd84876
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
56 additions
and
11 deletions
+56
-11
src/backend/resources/views/about.blade.php
src/backend/resources/views/about.blade.php
+54
-9
src/backend/resources/views/layouts/app.blade.php
src/backend/resources/views/layouts/app.blade.php
+1
-1
src/backend/routes/frontend.php
src/backend/routes/frontend.php
+1
-1
No files found.
src/backend/resources/views/about.blade.php
View file @
a0363c55
@
extends
(
'app'
)
@
extends
(
'
layouts.
app'
)
@
section
(
'title'
,
'About'
)
@
section
(
'content'
)
<
div
class
=
"row"
>
<
div
class
=
"col-lg-12"
>
<
h5
class
=
"font-weight-bold"
>
Laravel
SB
Admin
2
</
h5
>
<
p
>
SB
Admin
2
for
Laravel
.
</
p
>
<
p
>
Recommend
to
install
this
preset
on
a
project
that
you
are
starting
from
scratch
,
otherwise
your
project
'
s
design
might
break
.
</
p
>
<
a
href
=
"https://github.com/aleckrh/laravel-sb-admin-2"
target
=
"_blank"
class
=
"btn btn-github"
>
<
i
class
=
"fab fa-github fa-fw"
></
i
>
Go
to
repository
</
a
>
<
div
class
=
"row justify-content-center"
>
<
div
class
=
"col-lg-8"
>
<
div
class
=
"card shadow mb-4"
>
{{
--
<
div
class
=
"card-profile-image mt-4"
>--
}}
{{
--
<
img
src
=
"{{ asset('img/favicon.png') }}"
class
=
"rounded-circle"
alt
=
"user-image"
>--
}}
{{
--
</
div
>--
}}
<
div
class
=
"card-body"
>
<
div
class
=
"row"
>
<
div
class
=
"col-lg-12 mb-1"
>
<
div
class
=
"text-center"
>
<
h5
class
=
"font-weight-bold"
>
E
-
Lock
/
Doorcode
</
h5
>
</
div
>
</
div
>
</
div
>
<
hr
>
<
div
class
=
"row"
>
<
div
class
=
"col-lg-12"
>
<
h5
class
=
"font-weight-bold"
>
What
is
this
?</
h5
>
<
p
>
The
E
-
Lock
system
controls
access
to
all
the
doors
with
keypads
in
Kretschmar
Hall
and
Chan
Shun
Pavilion
at
Walla
Walla
University
.
It
allows
students
and
faculty
to
manage
their
own
door
code
to
enter
doors
,
as
well
as
shows
users
what
doors
they
have
access
to
and
when
.
It
has
an
API
to
allow
users
a
nice
programmatic
interface
for
the
system
.
It
also
allows
administrators
to
manage
the
door
system
in
the
building
.
</
p
>
</
div
>
</
div
>
<
hr
>
<
div
class
=
"row"
>
<
div
class
=
"col-lg-12"
>
<
h5
class
=
"font-weight-bold"
>
Credits
</
h5
>
<
p
>
The
E
-
Lock
system
was
written
by
Jacob
Priddy
,
a
2020
EE
and
CS
graduate
.
</
p
>
<
ul
>
<
li
><
a
href
=
"https://gitlab.cs.wallawalla.edu/elock"
target
=
"_blank"
>
GitLab
</
a
>
-
Source
code
for
the
project
.
</
li
>
<
li
><
a
href
=
"https://startbootstrap.com/themes/sb-admin-2"
target
=
"_blank"
>
SB
Admin
2
</
a
>
-
Thanks
to
Start
Bootstrap
.
</
li
>
<
li
><
a
href
=
"https://laravel.com"
target
=
"_blank"
>
Laravel
</
a
>
-
Open
source
framework
.
</
li
>
</
ul
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
@
endsection
src/backend/resources/views/layouts/app.blade.php
View file @
a0363c55
...
...
@@ -22,7 +22,7 @@
</li>
@endauth
<li
class=
"nav-item mr-2"
>
<a
class=
"nav-link"
href=
"
#
"
>
About
</a>
<a
class=
"nav-link"
href=
"
{{ route('web.about') }}
"
>
About
</a>
</li>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"/api/docs/"
>
Api Docs
</a>
...
...
src/backend/routes/frontend.php
View file @
a0363c55
...
...
@@ -21,4 +21,4 @@ Route::view('/password', 'password')->name('web.password');
Route
::
post
(
'/password'
,
[
MeController
::
class
,
'passwordUpdate'
])
->
name
(
'web.password.change'
);
Route
::
get
(
'/access'
,
[
MeController
::
class
,
'access'
])
->
name
(
'web.access'
);
Route
::
get
(
'/tokens'
,
[
MeController
::
class
,
'tokens'
])
->
name
(
'web.tokens'
);
Route
::
view
(
'/about'
,
'about'
);
Route
::
view
(
'/about'
,
'about'
)
->
name
(
'web.about'
)
;
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