mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
refactor: update hero image dimensions
This commit is contained in:
@@ -89,46 +89,3 @@ class RegistrationForm {
|
||||
inputs: List<Input>
|
||||
}
|
||||
|
||||
registrationForm : RegistrationForm = new RegistrationForm {
|
||||
title = "Register";
|
||||
description = "Create your Sonr account";
|
||||
state = "initial";
|
||||
inputs = [
|
||||
new Input {
|
||||
label = "Username";
|
||||
type = "text";
|
||||
placeholder = "Enter your username";
|
||||
value = "";
|
||||
error = "";
|
||||
help = "";
|
||||
required = true;
|
||||
},
|
||||
new Input {
|
||||
label = "Email";
|
||||
type = "email";
|
||||
placeholder = "Enter your email";
|
||||
value = "";
|
||||
error = "";
|
||||
help = "";
|
||||
required = true;
|
||||
},
|
||||
new Input {
|
||||
label = "Password";
|
||||
type = "password";
|
||||
placeholder = "Enter your password";
|
||||
value = "";
|
||||
error = "";
|
||||
help = "";
|
||||
required = true;
|
||||
},
|
||||
new Input {
|
||||
label = "Confirm Password";
|
||||
type = "password";
|
||||
placeholder = "Confirm your password";
|
||||
value = "";
|
||||
error = "";
|
||||
help = "";
|
||||
required = true;
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user