Questions tagged [user-registration]

508 questions
37
votes
4 answers

How can I avoid browser prepopulating fields in my registration form?

autocomplete="off" is not what I am after. Basically, on my registration form there are fields "phone" and "password" placed one above the other. (see screenshot) The "phone" field gets, annoyingly, prepopulated with a username, as I guess what the…
Peter Perháč
  • 20,434
  • 21
  • 120
  • 152
19
votes
3 answers

Spring Security user account registration, creation and management

I've been looking into using Spring Security for the authentication/authorization of my web application (this will be JDBC based). However, a core component seems to be left out from my perspective. How do I register/create new users? Is there an…
18
votes
7 answers

Use jQuery to show errors while submitting registration form

My last question was not clear so I am posting it with all clarification here. In the code below I want to show error messages using jQuery for registration form errors. Problem here is this code simply inserts data into database without checking…
user5311126
15
votes
2 answers

Troubleshooting "TemplateDoesNotExist at /accounts/login/" - Django auth setup

I am trying to get django-registration up and running on my newbie setup on Eclipse. I see that django has a lot of helper views to handle login, logout, registration, etc within the included django.contrib.auth app. I included the auth urls as…
SlowpokeJoe
  • 171
  • 1
  • 2
  • 6
15
votes
2 answers

OctoberCMS How To Create Custom User Registration Form With Fields From Plugin Extension

I'm trying to learn OctoberCMS and I am confused about the complete process of extending plugins. I've extended the user plugin according to the screencast (https://vimeo.com/108040919). Ultimately, I'm looking to create a new field called…
user2694306
  • 3,832
  • 10
  • 47
  • 95
13
votes
1 answer

Node.js - Send email on registration

I have signup form with the single email field. When an user enters its email I need to send a registration link. I've seen this Node.js example with signup form. But it has sendWelcome feature only. Are there any examples of Node.js apps with…
Erik
  • 14,060
  • 49
  • 132
  • 218
13
votes
7 answers

Is there a way to disable user-registrations completely in Wordpress?

I wonder if there is a way of disable user-registrations completely? I have a client that is really in no need of adding users. For me that would be an extreme measure of security. Of course I must be able to add users through code or similar. Is…
bestprogrammerintheworld
  • 5,417
  • 7
  • 43
  • 72
12
votes
4 answers

How to generate a user registration key in Delphi?

For my current application I use a very simple scheme to register new users. When a new user registers an email is sent with a key. To check wether this key is correct a kind of checksum is computed (3-7-11 digit check) which is added as the last 2…
Arnold
  • 4,578
  • 6
  • 52
  • 91
12
votes
7 answers

Should a user registration form indicate if an email address is already in use?

It seems pretty typical to limit user accounts to unique email addresses. So on my user registration form, I am doing email validation and returning a message like An account has already been registered for foo@bar.com Then it occurred to me that…
kenwarner
  • 28,650
  • 28
  • 130
  • 173
12
votes
4 answers

How to Auto Login After Registration in WordPress with core php

I've been trying for days now to take users who have just registered to my WordPress site and automatically log them in and then redirect them to a URL of my choice. By default, WordPress sends you a username and a password, then you must log in…
8
votes
0 answers

KeyCloak: how to send out email verification email, but not require it for logon

I'm configuring Keycloak email verification for my website. I found the settings to require email verification for signups but that doesn't fit my use-case. My website can be used without verified email, but some functions may be disabled. So when a…
barney765
  • 437
  • 3
  • 12
8
votes
2 answers

Thymeleaf registration page - Error during execution of processor 'org.thymeleaf.spring4.processor.attr.SpringInputGeneralFieldAttrProcessor'

I'm making a registration page for a website. I understand that in order for a new User to be created, an id is required, so we have the field:
MC123
  • 845
  • 2
  • 8
  • 12
7
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 -…
7
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.…
6
votes
0 answers

Keycloak Synch Registered users into local db

I am thinking of using Keycloak to handle authentication & authorisation of my application. So all the details of roles & users will be stored in keycloak. But I also need to have Users in my local database so I can link this to other tables of the…
nani21984
  • 911
  • 2
  • 13
  • 21
1
2 3
33 34