Skip to content

Commit 047bbf7

Browse files
authored
Create README.md
1 parent 9ca7bd1 commit 047bbf7

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

  • GUIScripts/Registration Form Web App
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
## Overview:
2+
With the help of the PyWebIO module, we'll create a registration form. This Python library is mostly used to build simple, interactive web interfaces locally. Username, name, password, email, and website link information will be entered into this form. In relation to passwords, it will also double-check your password to see whether it is accurate. Your phone number, website URL, and email address will also be verified.
3+
4+
## Form Elements
5+
* input_group: Used to get the inputs in the group.
6+
* input: Used to take all kinds of inputs from the user.
7+
* type: This depends on user choice whether the user wants a number in the input or a text in the input.
8+
* required: If required is true, that means you have to input something, we can’t leave blank.
9+
* validate: Receives input as a parameter, when the input value is valid, it returns True.
10+
* cancelable: Whether the form can be canceled. Default is False.
11+
* PlaceHolder: This element is used only in the input_group function.
12+
* radio: Only a single can be selected.
13+
* select: You can also select multiple options by setting the “multiple” parameter to True.
14+
15+
16+
## Output:

0 commit comments

Comments
 (0)