SlideShare a Scribd company logo
LOGIN
FORM
ALGORITH
M
DESCRIPTION
A Login form is used to enter authentication credentials to
access a restricted page or form. The login form contains a field
for the username and another for the password. When the login
form is submitted its underlying code checks that the credentials
are authentic, giving the user can access the restricted page.
LOGIN FORM PROPERTIES
• To expose the login form properties click on either of the
glyphs under the Data tab of the Properties window or click on
the name of the login form in the Project Explorer. Because a
login form is a special type of record form, the login form
properties are identical to those of a record form although
most of these properties are left blank.
LOGIN FORM PROPERTIES
Properties
In our example we created a small login form. In that case
USER NAME is a only Property of our login form.
PSEUDOCODE
• //Login Pseudocode begin valid_input_password := false
valid_input_username := false logged_in := false while
(logged_in = false) do begin print("Please enter Username: ")
//input Username readln(inputted_username) writeln("Please
enter Password: ") //nput Password readln(inputted_password)
FLOWCHART FOR LOGIN PROCESS
OUR RESOURCES
????
THANK YOU

More Related Content

PPT
Customizing User Profiles
PPTX
04. session 04 working withformsandframes
PPTX
Forms in html5
PPTX
API Developer Training: Insights for Integrations
PDF
Getting Information through HTML Forms
PPT
04 Html Form Get Post Login System
PPTX
HTML 5 Basics Part Three
PPTX
HTML5 Web Forms
Customizing User Profiles
04. session 04 working withformsandframes
Forms in html5
API Developer Training: Insights for Integrations
Getting Information through HTML Forms
04 Html Form Get Post Login System
HTML 5 Basics Part Three
HTML5 Web Forms

What's hot (13)

PPTX
Android development session 3 - layout
PPTX
Eloqua Kwanzoo Integration Setup Guide
PPTX
Web design - Working with forms in HTML
PPTX
PHP Form Validation Technique
PPT
Android UI Patterns
PDF
Accessibility in Design systems - the pain and glory
DOCX
Php forms and validations by naveen kumar veligeti
PPTX
Eloqua configuration for kwanzoo lead form campaigns
KEY
HTML5 Form Validation
PPTX
Kwanzoo Cloud Connector Step by Step Guide Drop Data Into Eloqua Contact Records
PPTX
Android Training (Android UI)
PDF
OAuth is a mess!
Android development session 3 - layout
Eloqua Kwanzoo Integration Setup Guide
Web design - Working with forms in HTML
PHP Form Validation Technique
Android UI Patterns
Accessibility in Design systems - the pain and glory
Php forms and validations by naveen kumar veligeti
Eloqua configuration for kwanzoo lead form campaigns
HTML5 Form Validation
Kwanzoo Cloud Connector Step by Step Guide Drop Data Into Eloqua Contact Records
Android Training (Android UI)
OAuth is a mess!
Ad

Recently uploaded (20)

PDF
Hybrid model detection and classification of lung cancer
PDF
A comparative study of natural language inference in Swahili using monolingua...
PDF
Accuracy of neural networks in brain wave diagnosis of schizophrenia
PDF
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
PDF
Hindi spoken digit analysis for native and non-native speakers
PDF
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
PDF
Getting Started with Data Integration: FME Form 101
PDF
Web App vs Mobile App What Should You Build First.pdf
PPTX
Tartificialntelligence_presentation.pptx
PPTX
cloud_computing_Infrastucture_as_cloud_p
PDF
1 - Historical Antecedents, Social Consideration.pdf
PPTX
OMC Textile Division Presentation 2021.pptx
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
August Patch Tuesday
PPTX
A Presentation on Touch Screen Technology
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
DP Operators-handbook-extract for the Mautical Institute
PDF
Mushroom cultivation and it's methods.pdf
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Hybrid model detection and classification of lung cancer
A comparative study of natural language inference in Swahili using monolingua...
Accuracy of neural networks in brain wave diagnosis of schizophrenia
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
Hindi spoken digit analysis for native and non-native speakers
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
Getting Started with Data Integration: FME Form 101
Web App vs Mobile App What Should You Build First.pdf
Tartificialntelligence_presentation.pptx
cloud_computing_Infrastucture_as_cloud_p
1 - Historical Antecedents, Social Consideration.pdf
OMC Textile Division Presentation 2021.pptx
Building Integrated photovoltaic BIPV_UPV.pdf
August Patch Tuesday
A Presentation on Touch Screen Technology
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
DP Operators-handbook-extract for the Mautical Institute
Mushroom cultivation and it's methods.pdf
Encapsulation_ Review paper, used for researhc scholars
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Ad

Alogorithum of login form

  • 2. DESCRIPTION A Login form is used to enter authentication credentials to access a restricted page or form. The login form contains a field for the username and another for the password. When the login form is submitted its underlying code checks that the credentials are authentic, giving the user can access the restricted page.
  • 3. LOGIN FORM PROPERTIES • To expose the login form properties click on either of the glyphs under the Data tab of the Properties window or click on the name of the login form in the Project Explorer. Because a login form is a special type of record form, the login form properties are identical to those of a record form although most of these properties are left blank.
  • 4. LOGIN FORM PROPERTIES Properties In our example we created a small login form. In that case USER NAME is a only Property of our login form.
  • 5. PSEUDOCODE • //Login Pseudocode begin valid_input_password := false valid_input_username := false logged_in := false while (logged_in = false) do begin print("Please enter Username: ") //input Username readln(inputted_username) writeln("Please enter Password: ") //nput Password readln(inputted_password)