# -----------------------------------------------------------------------------#
# vBulletin plugin for OpenID Authentication
# @author		Will Norris <will@willnorris.com>
# -----------------------------------------------------------------------------#

1) install the OpenID and Yadis libraries from openidenabled.com
   - http://www.openidenabled.com/yadis/libraries/php
   - http://www.openidenabled.com/openid/libraries/php

2) install product-openid.xml using the vBulletin Product Manager

3) Add a new User Profile Field -- a single-lined textbox named "OpenID"

4) Edit your templates to add "$openid_login_box" somewhere.  I recommend adding 
   it to the 'navbar' template -- inside the existing login box, just before the 
   submit button, and wrap it in a div that floats right.  So you'd end up with

	<td>
		<div style="float: right">
			$openid_login_box
		</div>
		<input type="submit" class="button" value="$vbphrase[log_in]" tabindex="104" 
             title="$vbphrase[enter_username_to_login_or_register]" accesskey="s" />
	</td>

   But of course, you can add it anywhere you want.

5) Find the 'OpenID' settings group in the vBulletin Options and configure as 
   appropriate.  This is particularly important if you installed the libraries 
   in step 1 in a location that is not part of the standard php include_path
