Skip to content

Instantly share code, notes, and snippets.

@beingben
Last active December 15, 2015 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beingben/5296580 to your computer and use it in GitHub Desktop.
Save beingben/5296580 to your computer and use it in GitHub Desktop.
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="" />
</p>
<input style="width:75px;margin:15px 0px;" type="submit" value="Login" />
</form>
<a href="w_password.php">Forgot username or password?</a>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment