Questions tagged [user-registration]

469 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áč
  • 19,614
  • 21
  • 116
  • 148
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
17
votes
2 answers

Django - Foreign Key to User model

I want to create new model, something like: user_name = models.ForeignKey(u"Username", User), but when I try to syncdb, I get this error message: "AttributeError: 'unicode' object has no attribute '_meta'" When I look on some tutorials,…
Meph
  • 514
  • 1
  • 6
  • 14
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,290
  • 7
  • 37
  • 80
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
  • 11,695
  • 42
  • 119
  • 194
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,016
  • 5
  • 42
  • 82
11
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,018
  • 6
  • 36
  • 67
10
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
  • 27,129
  • 27
  • 126
  • 170
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
  • 427
  • 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
  • 825
  • 2
  • 8
  • 11
6
votes
3 answers

Setting up an API using Devise for authentication

I am attempting to get a user registration endpoint setup for my rails application so that I can access the app's functionality in an iOS rendition. I've gone ahead and namespaced my API, and so far have managed to get user authentication working…
Alex Peña
  • 111
  • 1
  • 6
5
votes
8 answers

Prevent multiple registrations on a survey website

Context I am developing a survey website where anyone can vote once. Obviously I have to prevent multiple registrations for the survey to remain relevant. I force every user to login with their Google, Facebook or Twitter account. But they can…
GG.
  • 17,726
  • 11
  • 69
  • 117
5
votes
1 answer

Registration/Login using Oath or email/password with hyperledger-fabric-ca

I'm new to Hyperledger Fabric development and I'm trying to make a user friendly registration. For example: + Using Oauth from google account. + Or using traditional email-password registration. I've read the hyperledger fabric document and…
1
2 3
31 32