In: Computer Science
E-commerce Question
Study the scenario and complete the question(s) that follow:
Tshepiso Florists is a small flower business located in the Glen
Austin neighbourhood. There are two
main types of clients that patronise Tshepiso Florists – gardening
enthusiasts and people who need to
send flowers to their loved ones on special occasions.
Tshepiso is starting a gardening class online and she would like to
send a notification via email to a
particular group of clients.
Create a database of at least 10 clients for Tshepiso Florists.
Design an interface with which to send
the email notification to the appropriate group of clients. In the
email, state the start date of the
gardening class and also offer a gift to the first 10 people who
sign up for the class.
Question
Before designing for the client in the scenario above, use your
device (laptop, computer or
phone) to look for a minimum of 4 cookies that are currently stored
by sites that you have visited.
Take pictures of these cookies and attach them for submission as
part of your answer to this
question.
Securely design a registration form, login form, landing page (of
your choice) and database for
Tshepiso. Include a notification of the existence of cookies as
well as a privacy notice.
Answer :
Login.html
<form name="regForm">
<label>Username: <input type="text"
id="username"></label>
<label>Password: <input type="password"
id="pwd"></label>
<input type="submit" class="login" value="Log In"
onclick="validation()" formtarget="_blank">
</form>
Registration.html
Home >>HTML Tutorial >HTML Registration Form
HTML Registration Form
« PreviousNext »
Registration Form in HTML 5
Registration form have various types are used intensively on preregistration of website to allow for user or visitor can create their own profile on your website.
<html> <head> <title>HTML Table</title> </head> <body> <form method="" action=""> <table border="1" align="center" width="400" bgcolor="#CCCCCC" > <caption>Registration form</caption> <tr> <th>Enter your first name</th> <td><input type="text" name="fn" id="fn1" maxlength="10" title="enter your first name" placeholder="enter your first name" required/></td> </tr> <tr> <th>Enter your last name</th> <td><input type="text"/></td> </tr> <tr> <th>Enter your password</th> <td><input type="password"/></td> </tr> <tr> <th>ReEnter your password</th> <td><input type="password"/></td> </tr> <tr> <th>Enter your email</th> <td><input type="email"/></td> </tr> <tr> <th>Enter your mobile</th> <td><input type="number"/></td> </tr> <tr> <th>Enter your address</th> <td><textarea rows="8" cols="20"></textarea></td> </tr> <tr> <th>Select your gender</th> <td> male<input type="radio" name="g" value="m"/> female<input type="radio" name="g" value="f"/> </td> </tr> <tr> <th>Select your hobbies</th> <td> hobby1<input type="checkbox" name="x[]" value="h"/> hobby2<input type="checkbox" name="x[]" value="h2"/> hobby3<input type="checkbox" name="x[]" value="h3"/> </td> </tr> <tr> <th>Select your DOB</th> <td><input type="date"/></td> </tr> <tr> <th>Select your Country</th> <td> <select name="country"> <option value="" selected="selected" disabled="disabled">Select your country</option> <option value="1">India</option> <option value="2">Pakistan</option> </select> </td> </tr> <tr> <th>Upload your pic</th> <td><input type="file"/></td> </tr> <tr> <td colspan="2" align="center"><input type="submit" value="Save My Data"/> <input type="reset" value="Reset Data"/> </td> </tr> </table> </form> </body> </html>