a. Users
b. Admins
c. Partners
Usernames for those 3 test roles are on a text file. Assume that we don’t need passwords to get in to this website.
User: user1
Admin:admin1
Partner:partern1
URL for the login is
www.example.com/login/{username}
Write a script or pseudo code to automate this scenario.
Let us consider the usernames are unique. No two users irrespective of their type will have same username .
The pseudocode is be as below
Enter your username
Store the value in variable usr
Open the text file containing usernames (users.txt)
Loop: Read first line of the username text file users.txt
store that in a variable line
split the line by the delimeter ':'
store the first part in variable 'type' and second in
'usrname'
check this 'usrname' value with the variable
usr
if they matches exactly:
read the 'type' and load corresponding Dashboard
of 'type'
break from the loop.
else
read next line
Loop Ends
Now write the code with your favourite scripting language .
Hope this will help.
If you need annymore detail let me know.
We have a website that allows 3 kinds of users. a. Users b. Admins c. Partners...
Create a folder named "TrainerApp". In that folder create the following files. Create a PHP file, "insert-user-form.php", with a form that has the following fields: - First Name (text) - Last Name (text) - Email (text) - Password (text) - Submit button Create another PHP file, "insert-exercise-form.php" with a form that has the following fields: - Exercise Name (text) - Description (text) - Demonstration Image (file) - Submit button Create another PHP file, "login-user-form.php" with a form that has the...
Step 3: How would you write this script in C? It needs to do the
things required in step 3.
1. You have received a new batch of distinguished users; their basic information is located in newusers.tar. Inside of the tar file, there is a file called "newusers.txt" which contains a colon-separated entry for each user: the username, the uid, the GECOS information, and the user's preferred shell. Also in the tar file you will find a public key for...
I need help ASAP on this, this is due at midnight PST. This is the current code I have. How can I allow the user to quit. My counting while loop works fine, but I would like it to not keep outputting username if a file was successfully opened. This is what is required. Prompt You have assumed the role of managing the technology infrastructure at a zoo. You will develop a working program (either an authentication system or a...
The first script is validate.sh. This is a simple form validation script that will be used to verify the inputs given. Normally, this would be done to validate input from a website or another program before entry into a database or other record storage. In this case, we will keep it simple and only focus on the input validation step. In particular, the script should prompt the user for four values: first name, last name, zip code, and email address....
Written in Java I have an error in the accountFormCheck block can i get help to fix it please. Java code is below. I keep getting an exception error when debugging it as well Collector.java package userCreation; import java.io.IOException; import java.net.URL; import java.util.ResourceBundle; import java.util.regex.Matcher; import java.util.regex.Pattern; import javafx.event.ActionEvent; import javafx.fxml.*; import javafx.scene.*; import javafx.scene.control.*; import javafx.scene.text.Text; import javafx.stage.*; public class Controller implements Initializable{ @FXML private PasswordField Password_text; @FXML private PasswordField Confirm_text; @FXML private TextField FirstName_text; @FXML private TextField LastName_text;...
1. Objective This challenge lab will enable you to apply, in a practical scenario, the topics we have introduced in the class so far: input/output including files, variables, conditionals and loops. 2. Learning outcomes After completing this assignment, you will be able to: • Analyze problems and express a solution algorithm using pseudocode. • Implement a pseudocode algorithm in a high-level language, including the correct use of arithmetic and logical expression and simple input/output operations. • Use the syntax and...
Question 1 A URL is a ____-part addressing scheme a. two b. four c. three d. one Question 2 A text file that contains HTML tags is called a(n) ____. a. server b. HTML document c. browser d. IP address Question 3 A(n) ____ comes into existence as soon as a work is placed into a tangible form. a. open-source project b. copyright c. reproduction notice d. lien Question 4 A(n) ____ is a small file...
For Java Program In this lab you will gain experience using all the concepts we learned to this point, which include classes, methods, collections, and file input/output. Also, you will gain experience in team programming. This assignment will be completed by teams of 2. Each member must complete an equal amount of the work in order to receive credit for this assignment. You must write the programmer’s name in a comment for each method you write. You need to create...
in
c++ please
Page 1 of 3 (PRO) Project Assignment Instructions Last Charged: 6/1/2020 Read and follow the directions below carefully and perform the steps in the order listed. You will be solving one program as instructed and turning in your work electronically via an uploaded file within Eagle Online/Canvas and copy & paste the program to the Text Entry box as well. Make sure and check your work prior to uploading the assignment (NOTE: For Steps 1 & 2...