I hereby claim:
- I am JakePrice86 on github.
- I am jakeprice (https://keybase.io/jakeprice) on keybase.
- I have a public key whose fingerprint is 3217 3166 40A7 A771 9146 9DDC 23A3 31FB C95D A993
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
//-- prettyPassword.js | |
window.prettyPassword = { | |
//-- Password Vars | |
pass: "", | |
sep: "", | |
//-- generate | |
generate: function() { |
<?PHP | |
$table->increments('id'); | |
$table->string('product'); | |
$table->string('type'); //-- Video type | |
$table->string('data'); //-- Datas | |
$table->timestamps(); | |
public function decideAdvert() | |
{ |
RewriteRule ^images/email/([a-zA-Z0-9_-]*)/images.gif$ email_detect.php?string=$1 [L,NC,QSA] |
<?php | |
//-- Other working code above | |
if (Auth::attempt(array('username' => $username, 'password' => $password))) { | |
return Redirect::intended('workspaces/'); | |
} else { | |
//-- Failed Auth | |
Session::flash('message', 'Username and/or password incorrect'); | |
return Redirect::to('login')->withInput(Input::except('password')); |