Questions tagged [user-registration]

469 questions
5
votes
2 answers

Django UserCreationForm custom fields

I am trying to create form for user registration and add some custom fields. For doing that, I've subclassed UserCretionForm and added fields as shown in django documentation. Then I've created function-based view and template based on this form.…
5
votes
0 answers

How migrate from Facebook Registration Plugin to Facebook Login

I'm working on a site that use the Facebook Registration Plugin to add some custom field on registration and perform some instructions too. It works fine, but now i'm going to update the Facebook SDK to use API v2.1 instead of actual v1.0 and…
Zauker
  • 1,976
  • 1
  • 23
  • 32
5
votes
1 answer

Registering unique users on basis of emailid

I want to register users on the basis of their emaild ids on my website, assuming that there is one to one relationship between users and their emailid strings. But gmail doesn't recongnize .s in email ids. That means juzerali@gmail.com and…
Juzer Ali
  • 3,803
  • 2
  • 28
  • 57
4
votes
2 answers

reveal fake number / prevent fake registration / fake sms

I faced with a such question for which can not find an answer in google. For example, I have a company which provides some services for customers. And for new users I have a promo/discounts. As we know there are a lot of websites which provide fake…
4
votes
1 answer

Additional user role select field in Woocommerce registration

. A user role selection is needed in WooCommerce registration form. Users should have a pull down menu to select between "customer" and "reseller" (IDs) wordpress role. Unfortunately my attempt to assemble code fails. The following code does not…
John
  • 130
  • 1
  • 8
4
votes
2 answers

How to send passwords from a client to a server

I am creating a web service using Jersey. The service should handle user registration. My plan is to get a registration request which will contain a user name and password, store both of them in a MySql db and fetch it every time the user wants to…
Yonatan Nir
  • 8,303
  • 23
  • 80
  • 156
4
votes
4 answers

React native- How to display login screen only one time in react native?

I am creating a project where I have a Registration screen, which is used for user to Register into the Application. This Register screen should only be visible the first time, so the user can fill it and log in, but when user opens the application…
4
votes
3 answers

django User registration and authentication by email

I want to make users active by sending them an activation email to click. I guess it is currently not incorporated in Django 1.6.The user-registration app coded in Django seems to serve this purpose. But I have some doubts with regard to the…
eagertoLearn
  • 8,372
  • 22
  • 66
  • 108
4
votes
1 answer

ASP.Net MVC 4 How to create a simplemembership account without a password

I am building an MVC4 app in which users will be registered by a site admin. The site admin will enter everything but the password of course. I then generate a token and send via email for them to set their password. However, I don't see a way to…
Xaxum
  • 3,283
  • 8
  • 42
  • 62
4
votes
1 answer

Alternatives to email verification in sign-up

I have read that users find annoying having to verify their email so they can complete a simple registration, however removing that extra step and using CAPTCHAs to deal with bots leads to the uncomfortable situation in which users can't regain…
Robert Smith
  • 8,127
  • 15
  • 68
  • 113
3
votes
1 answer

What am I missing for this registration form to work?

I am trying to create a simple registration form. I have the following: include('User.datatype.php'); class NewUser { function inquireSubmit() { if(isset($_POST['register'])) { $username = filter_input(INPUT_POST,…
Monica
  • 1,665
  • 2
  • 21
  • 33
3
votes
3 answers

How can I improve this "register" view in Django?

I've got a Django-based site that allows users to register (but requires an admin to approve the account before they can view certain parts of the site). I'm basing it off of django.contrib.auth. I require users to register with an email address…
Tyson
  • 6,064
  • 3
  • 30
  • 37
3
votes
2 answers

Keycloak - Multi/2FA Factor - OTP - QR Code - Custom Login Screen - Rest API

I have my own Login page where user enters username/password. This username/password are used to login through Keycloak Rest API. http://localhost:8080/auth/realms/Demo/protocol/openid-connect/token input -…
3
votes
2 answers

django.db.utils.IntegrityError: NOT NULL constraint failed

i'm trying to build a customised registration to my site, so i'm using a sign Up with Profile Model. Traceback: Traceback (most recent call last): File "C:\Python36\lib\site-packages\django\core\handlers\exception.py", line 41, in inner response…
VITALYS WEB
  • 529
  • 1
  • 6
  • 16
3
votes
0 answers

Django - IntegrityError null value in column "user_id" violates not-null constraint

I am getting an error that is quite weird and I have no clue what could be causing that. I just want to do a simple signup using either Facebook or on-site registration using AllAuth (a third party registration app). Somehow every time I try to…
A Campos
  • 525
  • 1
  • 8
  • 24
1
2
3
31 32