2,721 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
72
views
Authentication architecture on AWS with rust backend & Vue frontend
I am trying to figure out which strategy is fastest to implement and better for someone without aws experience. I have a rust backend API and a vue3 frontend. The backend is containerized and ...
0
votes
0
answers
27
views
How is ITK-SNAP's "Multi-Component Display" function implemented and what is its principle?
I tried to use only Python's matplotlib to display the deformation field of medical image registration. The deformation field is a [1,3,h,w,d] matrix. After scaling the range to [0, 255] and changing ...
0
votes
1
answer
62
views
How scaling matrix is calculated on itk-snap?
I'm trying to reproduce the scaling matrix of ITK-SNAP on python but I have failed. I have a fixed image and a moving matrix. I tried to set the scale factors of GUI as Sx = 2; Sy = 1; Sz = 1. When I ...
0
votes
0
answers
33
views
Installed Delphi 7 Archi to new computer. Where to put 'reg 103.txt'?
I have a couple of old programs to keep alive so I reinstalled Delphi 7 Architect on my new Windows 11 Pro computer.
Delphi says its unregistered, and I've found a copy of the old 'reg 103.txt' ...
0
votes
1
answer
147
views
How to Properly Trigger Default WooCommerce Welcome Email Using Meta Key Change
I am using the BitForm plugin to create a custom registration form with WordPress authentication and email confirmation. This form creates a new WordPress user with the role of "customer" and assigns ...
0
votes
2
answers
106
views
Remove the mandatory field label 'This field is required.' and fix the bug with 'clean_email'
I use the built-in Django, 'UserCreationForm' to create a registration form, but there are unnecessary instructions 'This field is required.' that these fields are required, I want to remove them, ...
1
vote
0
answers
68
views
Make custom field mandatory while registering a user in Strapi
I'm pretty new with Strapi and I'm trying to add some functionality to the registration flow. I've added nickname to my User collection type.
The schema.json looks like this:
{
"kind": ...
6
votes
2
answers
7k
views
How to extend the core user schema in better-auth
I'm trying to extend the shema of a user account in better-auth (I'm using NextJS and MongoDB). I tried to follow the steps in the documentation, but at the end TypeScript is telling me that the new ...
0
votes
1
answer
66
views
How to register a set of points with subset of points?
I have a set of points (let's say 10000 points), which are detected with much time.
Then, some points (let's say 100 points) are quickly detected, which should be included by the 10000 points. The ...
1
vote
1
answer
41
views
built-in Spring Security authorization form
I am doing registration and user login on the site in java, Spring Security, Spring boot and the problem arose is that when I log in to localhost:8080/login, the standard form from Spring Security ...
0
votes
1
answer
45
views
Drop Down Menu not getting picked in React JS
I am trying to create a registration form that will register a user if he chooses either "Teacher or "Student" in the the Choose Role. The is issue is that, if I remove the <select&...
1
vote
1
answer
134
views
Ultimate Member: Adding passcode validation in the Register Form
I have utilised the provided code from ultimate member, trying to add a passcode validation in the Registration Form:
add_action("um_submit_form_register","...
0
votes
1
answer
2k
views
Keycloak Custom Registration Flow Fails with "KC-SERVICES0013: Failed authentication: java.lang.NullPointerException" Error
I am following this guide and trying to create my custom registration flow in Keycloak using two forms and custom templates. Below I am providing the code of the authenticator factory for the first ...
0
votes
1
answer
67
views
I can't auto login user after registration in spring boot
when i registrate user my project throws stackOverFlowError, but user is saved to database.I also have registration form. Here is my registration controller:
@PostMapping("/register-user")
...
0
votes
0
answers
76
views
I am doing a registration form but in the table inside of the database the information has empty values
This is the code.
I am using just-validate because this is for a school project.
<?php
session_start();
if (isset($_SESSION["user"])) {
header("Location: index.php");
...