This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- /* My slideDown mail form starts here */ | |
--> | |
<div id="myModal" class="reveal-modal small myModal2 panel"> | |
<div class="row"> | |
<div class="large-12 columns profileContent"> | |
<div class="navPanel"> | |
<nav class="top-bar min"> | |
<div class="large-2 columns"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- /* My SlideDown Create Account Form Starts Here */ --> | |
<div id="createAccount" class="reveal-modal small createAccount panel"> | |
<div class="row"> | |
<div class="large-12 columns profileContent"> | |
<div class="navPanel"> | |
<nav class="top-bar min"> | |
<div class="large-2 columns"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- /* My SlideDown Authentification Form Starts Here */ --> | |
<div id="adminAuth" class="reveal-modal small adminAuth2 createAccount panel"> | |
<div class="row"> | |
<div class="large-12 columns profileContent"> | |
{{Form::open(array('url'=>'login'))}} | |
<div class="navPanel"> | |
<nav class="top-bar min"> | |
<div class="large-2 columns"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
document.write('<script src=' + | |
('_proto_' in {} ? 'comp/javascripts/vendor/zepto' : 'comp/javascripts/vendor/jquery') + | |
'.js><\/script>') | |
</script> | |
{{HTML::script("comp/javascripts/foundation/foundation.js")}} | |
{{HTML::script("comp/javascripts/foundation/foundation.alerts.js")}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- //<!DOCTYPE html> | |
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]--> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width" /> | |
<title>Your Title Name</title> | |
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab:700' rel='stylesheet' type='text/css'> | |
<link href='http://fonts.googleapis.com/css?family=Numans' rel='stylesheet' type='text/css'> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Route::put('user-update', array('as'=>'user-update', 'uses'=>'UserController@update')); | |
Route::post('login', array('as'=>'login', 'uses'=>'LoginController@index')); | |
Route::post('login', array('uses'=>'LoginController@index')); | |
Route::get('logout', array('as'=>'logout', 'uses'=>'LoginController@logout')); | |
Route::get('login-attempt', array('as'=>'login-errors', 'uses'=>'LoginController@fail')); | |
Route::get('panel', array('as'=>'panel', 'uses'=>'PanelController@index')); | |
Route::get('saved-homes', array('as'=>'saved-homes', 'uses'=>'PanelController@saved_homes')); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<div class="large-12 columns"> | |
<div class="orbit-container panel"> | |
<h4 class="selectedProperty">Your Text Here</h4> | |
<ul class="orbit-slides-container" data-orbit data-options="timer_speed:20000;"> | |
<li> <a href="{{URL::to('search/1')}}"> | |
<img src="{{url('comp/img/orbit/1.jpg')}}" alt=""> | |
<div class="orbit-caption">Your Caption Text</div> | |
</a> | |
</li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<div class="large-12 columns contactUsFormWrapper"> | |
<div class="contactUsFormWrapper"> | |
{{Form::open(array('url' => 'foo/bar'))}} | |
<fieldset> | |
<legend><h3>Contact Us</h3></legend> | |
<div class="row"> | |
<div class="small-6 columns"> | |
{{Form::label('firstName', 'First Name')}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DirectoryIndex index.php | |
RewriteEngine on | |
RewriteCond $1 !^(index\.php|images|css|js|robots\.txt|favicon\.ico) | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule ^(.*)$ ./index.php/$1 [L,QSA] |
OlderNewer