Skip to content

Commit

Permalink
content, layout work.
Browse files Browse the repository at this point in the history
  • Loading branch information
drsii committed May 14, 2014
1 parent 8c4a7c0 commit 5718da6
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 7 deletions.
48 changes: 41 additions & 7 deletions app/views/sentry/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,52 @@
<div class="page-header">
<h1>Sentry 3</h1>
<p class="lead">A framework agnostic authorization and authentication package featuring groups, permissions, custom hashing algorithms and additional security features.</p>
<p class="lead">This demo provides you a solid foundation of controllers and views for your next Application.</p>

<p>This demo provides you a solid foundation of controllers and views for your next Application.</p>

<p class="lead">
<p>
<a href="https://github.com/cartalyst/demo-sentry" class="btn btn-lg btn-default"><i class="fa fa-github"></i> Github</a>
<a href="https://cartalyst.com/manual/sentry" class="btn btn-lg btn-default"><i class="fa fa-file-text-o"></i> Manual</a>
</p>
</div>
<button class="btn btn-default btn-lg" data-toggle="modal" data-target="#modal">
<i class="fa fa-heart"></i> Consider this
</button>

<div class="row">
</p>
<hr>
<h2>What's new</h2>

<p><b>Documentation for Sentry 3 is still in progress.</b></p>

<ul class="list list-unstyled">
<li>Allow for custom hashing strategies.</li>
<li>Refactor permissions out into a driver-based system.</li>
<li>Refactor `*Provider` and `*Interface` implementations into single `*Repository` classes, stripping methods and simplifying where possible.</li>
<li>Multiple sessions.</li>
<li>Multiple login columns.</li>
<li>Inter-account throttling and improved DDoS protection.</li>
<li>Improved integration with Laravel (`Sentry::basic()`, easy email integration with queues).</li>
<li>Improved speed - make use of eager loading ~~and caching~~.</li>
<li>Allow use of implementations (such as Eloquent and Kohana ORM) to take place on the ORM level, without bloating Sentry with abstractions never used by Sentry.</li>
<li>Add support for two factor authentication.</li>
<li>Allow more flexible activation scenarios.</li>
</ul>

</div>

<!-- Modal -->
<div class="modal fade" id="modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title" id="myModalLabel">Support</h4>
</div>
<div class="modal-body">

</div>
<div class="modal-footer">
<button type="button" class="btn btn-default btn-block" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>

@stop
1 change: 1 addition & 0 deletions app/views/template.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@

<script type="text/javascript">
$('.tip').tooltip();
//$('#modal').modal();
</script>

@yield('scripts')
Expand Down
6 changes: 6 additions & 0 deletions public/assets/css/demo.css
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,12 @@ body {
text-align: center;
}

.list li {
padding:8px 0;
border-bottom:1px solid #ddd;
max-width: 800px;
margin:0 auto;
}


@media (min-width: 992px) {
Expand Down

0 comments on commit 5718da6

Please sign in to comment.