views:

56

answers:

3

Hi. Who to create openid registration as on this site?

A: 

First Steps

The first thing you'll need, if you're going to begin accepting OpenIDs on your Web site, is a sign-in form. Here's the code:

<form method="post">
      Sign in with your OpenID: <br/>
      <input type="text" name="id" size="30" />
      <br />
      <input type="submit" name="submit" value="Log In" />
</form>

...

That should get you started.

Michael Robinson
it's authorization? but i need registration...then user come to my site, and hi don't have openid, i redirect he to https://www.myopenid.com/. Then user registration on https://www.myopenid.com/ he back (redirect) to my site with openid
ErgallM
A: 

Try looking at Zend's tutorial, it is well written and so will be pretty simple to implement.

http://devzone.zend.com/article/3581

MRW
A: 

CommunityID at http://source.keyboard-monkeys.org/projects/show/communityid will do what you are asking...

NinjaCat