Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am beingben on github.
  • I am benham (https://keybase.io/benham) on keybase.
  • I have a public key ASDQ5nWyG1Lcwl7xX4uf6_I0Lp-OoPpitPMgWujNFZBNrAo

To claim this, I am signing this object:

@beingben
beingben / 0_reuse_code.js
Created September 26, 2013 22:39
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@beingben
beingben / CCB Login Form
Last active December 15, 2015 17:29
Login Form for Church Community Builder (CCB) You can put this on any web page you like. The result will be a secure login to CCB (the action on the form is https, so you can put this even on insecure pages)
<div id="login-area">
<form action="https://YOURCCBNAME.ccbchurch.com/login.php" method="post" name="main_form">
<input name="ax" type="hidden" value="login" /> <input name="rurl" type="hidden" value="" />
<p>
<label>Username</label>
<input name="form[login]" type="text" value="" />
</p>
<p>
<label>Password</label>
<input name="form[password]" type="password" value="" />