2010-02-24 71 views
3

两个目标:验证系统,允许用户稍后添加密码?

  • 最小化到写评论的障碍。明显的设计结论:不要让你的用户创建一个新帐户或用密码登录。

  • 允许用户积累的业力/分征求意见。明显的设计结论:让用户创建独特的帐户,以便奖励他们的活动。

其他人怎么解决这个问题?你认为设计一个可以节省电子邮件地址的系统是一个不错的主意,然后允许人们稍后将密码与他们联系起来吗?

回答

0

退房如何disqus做到这一点。他们不强迫你注册,但他们使它非常方便。

0

您是否要求输入电子邮件地址?如果您的过程可以是:

function emailverify() { 
    // Send a verification email or use http://email-verify.appspot.com/ 
    // Hold their comment until their email is verified. Once verified, post comment 
} 

if(we have seen this user before) { //ie, email is in DB 
    if(user has password) { 
     // Ask for password 
    } else { 
     emailverify(); 
    } 
} else { 
    emailverify(); 
}