Questions tagged [registration]

Registration is a process through which a person or entity provides some necessary information about himself to the company or other entity he/it wants to be registered with.

2747 questions
7
votes
3 answers

Facebook Connect: capturing user data with django-profiles and django-socialregistration

Either my google searching has completely left me or there's hardly any documentation/tutorials for django-socialregistration. Too bad, because it seems like a nice enough app. Through some trial-and-error, I have managed to get it mostly running on…
mitchf
  • 3,697
  • 4
  • 26
  • 29
7
votes
4 answers

how to test django registration app process while in development server (no mail)

I am developing a django application on my MAC. The development server that comes with django is great. However, I installed the django-authopenid (combines django-registration app with openID) which follows the 3 step process: user signs up, app…
rich
  • 595
  • 1
  • 7
  • 15
7
votes
0 answers

User registration in Scotty

While learning Haskell I've made a small web app in Scotty framework. Next I'd like to add user registration. Registration should support email/password and Google/FaceBook login options. If user registers "on site" he should also be able to login…
Reygoch
  • 1,204
  • 1
  • 11
  • 24
7
votes
2 answers

ASP.NET - two types of users that register in one registration form?

I'm building a website application that will have two different types of users, let's call one A and the other is B. They have some similar data, such as: 'name', 'password', etc., and the rest are different. I have done 2 tables for them separately…
user5067119
  • 155
  • 1
  • 14
7
votes
6 answers

Redirect after register in Laravel

I am using Laravel 5. I wanted to redirect a user after a successful registration. I have tried these in my authcontroller but it doesn't work. protected $loginPath = '/plan'; protected $redirectTo = '/plan'; protected $redirectAfterRegister =…
shaNnex
  • 1,043
  • 2
  • 19
  • 34
7
votes
1 answer

User sign-up with email verification

I'm developing a website with using struts2 and jsp pages. In many sites after you sign-up, a link will be sent to your email and after clicking on that the registration is complete. I want this feature on my webstie, but I don't have any idea how…
Zahra I.S
  • 695
  • 1
  • 10
  • 20
7
votes
1 answer

Adding confirmable module to an existing site using Devise

I'm using devise for a web app and wanted to add the confirmable module to the site. However, since a confirmation_token isn't generated users can't sign in. When clicking the 'Didn't receive confirmation instructions?' link the token still isn't…
7
votes
3 answers

Using OpenID how do you handle 2 accounts with the same nick

If I want to provide OpenID as the only registration method available AND want to do something meaningful with the nick name, how can I handle 2 users with the same Jon Smith nickname? Actually, when I looked at StackOverflow's URL schema I was…
Juan Delgado
  • 2,030
  • 15
  • 18
7
votes
1 answer

Rails: Multi-Step New User Signup Form (FSM?)

I've read the "Create Multi-Step Wizard" in Advanced Rails Recipes. I've also read and re-read the documentation for the updated FSM I'm using called Workflow, and looked here and here. The Advanced Rails Recipe focuses on records (quizzes) that…
neezer
  • 19,720
  • 33
  • 121
  • 220
7
votes
3 answers

django apps for changing user email with verification?

I already use django-registration : you can register with an email verification, you can reset password with an email confirmation but there is no way to change user's email with an email verification. Do you know a django application which gives…
Eric
  • 5,101
  • 10
  • 37
  • 45
7
votes
1 answer

IO domain registry

I am looking to register a .io domain, however none of my usual registrars can do it for me. Where can I register a .io domain? Can anybody recommend a particular registrar? Thanks!
Foxocube
  • 710
  • 9
  • 32
7
votes
1 answer

FOSUserBundle registration customize

What I am trying to do is nothing hard. This is my first project on symfony and it's really confusing. I am using FOSUSerbundle. I dont want to have a login and registration bellow /login and /registration So I made a bundle which is child of…
Lukas Lukac
  • 7,766
  • 10
  • 65
  • 75
7
votes
2 answers

How to know if my SensorManager has a registered Sensor

I'm using a sensor for my Android Application. I register the sensor with a line of code: mySensorManager.registerListener(this, orientationSensor, SensorManager.SENSOR_DELAY_NORMAL); I have introduced a line of code to unregister the listener so…
chntgomez
  • 2,058
  • 3
  • 19
  • 31
7
votes
1 answer

Devise Rspec registration controller test failing on update as if it was trying to confirm email address

I have the following route: devise_for :users, :controllers => { :omniauth_callbacks => "users/omniauth_callbacks", :registrations => 'users/registrations', :sessions =>…
HapiDaze
  • 335
  • 6
  • 16
7
votes
1 answer

Creating Multiple Step Registration in iOS

How to create a multiple step registration form in iOS. Which is the best way ? Have around 5 steps in total. Two have just agree and disagree button . Everything else has prev and next and finally submit. 1) Creating separate controllers for each…