Questions tagged [user-registration]

508 questions
2
votes
1 answer

Being a member of a Facebook group and THEN to be able to register and login to a website. How to do it?

I've been searching the internet for a while to come up with a solution for the issue of logging in to a website with the support of Facebook account. The case study is as follows: I have a website which provides course materials to my students in…
MemiAlan
  • 21
  • 4
2
votes
1 answer

Can't register new users on OpenFire using Smack. What do these stanzas mean?

I'm using the Android version of the Smack API and developing a client that auto-registers itself in case it was not previously registered. Well, if I manually register the user and login with the client, everything works. But I can't make the…
mdelolmo
  • 6,417
  • 3
  • 40
  • 58
2
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,585
  • 3
  • 23
  • 34
2
votes
2 answers

Keycloak 19.0 - Send Welcome User email to registered user

I want to send an email to the registered user once the admin creates a new user saying that " the user successfully registered with the xyz email id.. " Is there any option to achieve this in keycloak 19.03 or above ? Or Is it an out of box option…
2
votes
0 answers

Multipage form to show next div class after hitting submit in Javascript?

I am trying to create a flight reservation program that asks users to input their details. When they click 'Reserve flight', they are then shown a receipt on which their details are printed. However, this is my javascript code that is supposed to…
idknmre
  • 19
  • 5
2
votes
1 answer

Create a keycloak custom registration flow

Is there any possibility to configure custom registration flows in keycloak? I want to integrate a SMS OTP validation after the user fills the registration form and submit it.
Prabath
  • 127
  • 3
  • 7
2
votes
1 answer

(Django) type object 'User' has no attribute 'USERNAME_FIELD'

Down here I'm trying to create a custom user registration form and this is the error I keep getting: That is the result of me using UserCreationForm in place of forms.ModelForm according to many sources. I tried setting USERNAME_FIELD = username…
William Le
  • 825
  • 1
  • 9
  • 16
2
votes
1 answer

Rely on Facebook user id as a permanent user identifier

We are building a web application and right now we are in the stage of deciding how to keep track of our users. Our default option is to maintain our own user registration system which is a lot of headache (user name uniqueness, registration…
Yaron Levi
  • 12,535
  • 16
  • 69
  • 118
2
votes
1 answer

python Django fill in auto-created Profile model with User registration form

I am creating an art marketplace with django. I have the registration and the auto-create signal set up for the profile. There are three types of Users who will register on this app: Artists, Patrons, and Brokers (I call these user_status.) I would…
2
votes
2 answers

Disable create account during WooCommerce checkout when guest checkout is enabled for specified products

I have a WooCommerce store on my wordpress website, and I am trying to enable guest checkout for specific products in my store, and require account creation for other products. I have the following code in my functions.php file to enable guest…
2
votes
1 answer

Allow guest checkout for specific products only in WooCommerce

The following code add a custom field to admin product settings to manage guest checkout at product level: // Display Guest Checkout Field add_action( 'woocommerce_product_options_general_product_data', 'woo_add_custom_general_fields' ); function…
2
votes
0 answers

Prevent browser from storing password if signup failed

I have a sign up form with email and password/repeat-password fields, using Bootstrap 4 and jQuery. These get submitted to my API using jQuery $.post(). The issue is that even if the signup fails - for example if the email already exists - Chrome…
Magnus
  • 17,157
  • 19
  • 104
  • 189
2
votes
1 answer

how to check when a user has phone authenticated in Firebase?

I have an Android app where users are registered in the app with their phone number, I am using Firebase to store in Authentication their phone and their email and also I am saving in the Realtime Database their phone, their full name, and their…
2
votes
1 answer

AngularJS hash # problem after Azure B2C Sign Up policy redirects to application

What we'd like to do is to automatically Sign In\Login the user after they successfully Sign Up. Let's say the user got an invitation for the application. They go to the Sign Up page, fills out the form and clicks the Create button. If all is OK,…
Leniel Maccaferri
  • 100,159
  • 46
  • 371
  • 480
2
votes
1 answer

Remove login form (and registration) on WooCommerce checkout page

I trying to remove login and registration at checkout from woocommerce plugin in wordpress i tried guest checkout but this not working i tried this code remove_action( 'woocommerce_before_checkout_form', $checkout ); if ( !…