Seminar Topics & Project Ideas On Computer Science Electronics Electrical Mechanical Engineering Civil MBA Medicine Nursing Science Physics Mathematics Chemistry ppt pdf doc presentation downloads and Abstract

Full Version: online Book store
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[attachment=14580]
1. AIM:
 Develop static pages (using only HTML) of an online Book store. The pages should resemble: www.amazon.com. The website should consist the following pages.
• Home page
• Registration and user Login
• User profile page
• Books catalog
• Shopping cart
• Payment by credit card
• Order Conformation
PROCEDURE:
Home page
Main.html:
Code:
<html>
<head>
<title>
Amazon</title>
</head>
<body bgcolor="cyan"> <center>
<strong><h1>Welcome to AMAZON</h1></strong>
<form method="post" action="login.html" target=_blank >
<h4>For Books Information </h4><input type="submit" value="click here">
</form>
</center>
</body>
</html>
Registration and user Login
Login.html:
Code:
<html>
<head>
<title>
login page</title>
</head>
<body bgcolor="cyan"> <center>
<strong><h1> AMAZON </h1></strong></center>
<right>
<table align="center" border="0">
<tr>
<form method="post" action="catalog.html"  >
<td><h4>User name:</td>
<td><input type="text" ></td>
<td></td>
</tr>
<tr>
<td><h4>Password:</td>
<td><input type="password"></td>
<td></td>
</tr>
<tr>
<td>
</td>
<td><input type="submit" value="Submit" ><input type="reset" value="Reset"></td>
</form>
</td>
<td>
</td>
</tr>
</table>

<table align="center" border="0">
<tr><td>For registration Click Here</td></tr>
<tr>
<td>
<form method="post" action="userpro.html">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="submit" value="Register" >
</form>
</td></tr>
</table></body></html>
User profile page
Userpro.html:
Code:
<html>
<head>
<title>
login page</title>
</head>
<body bgcolor="cyan">
<center><strong><h1> AMAZON  </h1></strong></center>
<center><strong><h2> USER PROFILE</h2></strong></center>
<form method="post" action="catalog.html" >
<right>
<table align="CENTER">
<tr>
<td>Username:</td>
<td><input type="text" name="name1"></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" name="pass1"></td>
</tr>
<tr>
<td>Confirm Password:</td>
<td><input type="password" name="pass2"></td>
</tr>
<tr>
<td>Gender:
</td><td>
Male:<input type="radio" name="sex" id="male">Female:
<input type="radio" name="sex" id="female" ></td>
</tr>
<tr>
<td>Address:</td>
<td><textarea name="address" rows=5 cols=19>
</textarea>
</td>
<tr><td></td>
<td>
<input type="submit" value="submit" >
<input type="reset" value="reset"></td>
</tr>
</form></body></html>
Books catalog
Catalog.html:
Code:
<html>
<head>
<title>
books catalog</title>
</head>
<body bgcolor="cyan">
<center><h1>AMAZON</h1></center>
<form method="post" action="shopping.html">
<left>
<table>
<tr>
<td><b><h3>Computer programming books</td>
<td></td></tr>
<tr>
<td></td>
<td><h4>C&Ds</td>
</tr>
<tr>
<td></td>
<td><h4>Ads</td>
</tr>
<tr>
<td></td>
<td><h4>JAVA
</td></tr>
<tr>
<td><b><h3>Database books</td>
<td></td>
</tr>
<tr>
<td></td>
<td><h4>Oracle</td>
</tr>
<tr>
<td></td>
<td><h4>Ms SQL Server
</td></tr>
<tr>
<td></td>
<td><h4>MySql </td>  
</tr>
</table>
</h4>
<center>
<b>To buy one of these books
<br>
</b><input type="submit" value="click here">
</center>
</form>
</body>
</html>
Shopping cart
Shopping.html:
Code:
<html>
<head><title>shopping cart</title>
</head>
<body bgcolor="cyan">
<center><h1>
Shopping Cart</h1></center>
<br><br><br><br><br>
<table align="center">
<tr>
<td>Text Books</td>
<td>
<select >
<opt group label="select the book">
<option value="C&DS">C&DS
<option value="ADS">ADS
<option value="Java">JAVA
<option value="Oracle">ORACLE
<option value="Ms SQL Server">Ms SQL Server
<option value="MySql">MySql
</optgroup>
</select>
</td></tr>
<tr>
<td>
Quantity</td>
<td>
<input type="text" id="q">
</td></tr>
<tr>
<td></td>
<td>
<form method=post action="payment.html">
<input type="submit" value=ok />
</form>
</td></tr>
</table>
<center>
<pre>Cost of one book = 500.00 <br> shipping is = 100.00</pre>
</center>
</body>
</html>
Payment by credit card
Payment.html:
Code:
<html>
<head><title>payment</title></head>
<body bgcolor="cyan">
<center><h1>Payment By Credit Card</h1></center>
<form method=post action="ordrconform.html">
<br><br><br><br><br>
<table align="center">
<tr>
<td>Total Amount:</td>
<td><input type="text" name="amount">
</td>
</tr>
<tr>
<td>Credit Card Number:</td>
<td><input type="text" name="ccno"></td>
</tr>
<tr>
<td>Cvv Code:</td>
<td><input type="text" name="ccno">
</td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="Submit">
</td>
</tr>
</table>
</form></body>
</html>
Order Conformation
Ordrconform.html:
Code:
<html>
<head><title>order conformation</title></head>
<body bgcolor="cyan">
<center>
<h1><b>AMAZON</h1>
Your order Is Conformed
<h2><b>THANK YOU</h2>
</center>
</body></html>
Requirements on online bookstore project

[attachment=26871]

New customers need to register first to get one account ID. The provided information include : customer name, phone #, email address, home address info (street, city, state and zipcode), and password. After registration, the customer will be assigned one account ID and he/she can login using account ID and password. One customer can only register one account and each account must belong to exact one customer.
The bookstore keeps a large amount of books. Each book is identified by ISBN. For each book, the bookstore also needs to record its authors’ names, title, edition, year, category, publisher, quantity-in-stock, and price.
One customer can place any number of orders. For each order, the bookstore needs to record who places this order, when, the order status, total price, shipping address, payment method, bill address, and ordered books. Note there is only one shipping address and one billing address for each order though the shipping address may not be the same as the billing address. Currently for payment method, it only accepts credit card, hence the bookstore needs to record credit card information.

Functions for customers:

• New user account registration
• User login
• User can update his address, password etc.
• Book search (by author name, title, category, year or combinations)
• Create one empty order or shopping cart
• Add/delete books from shopping cart
• Merge shopping carts
• Change shopping carts as orders (please note that once a shopping cart is changed to order, all of this shopping cart’s info should be removed from database).
• Place the order
• Order trace

Functions for employees:

• List book information (e.g., title, author, price) and quantity-in-stock of some chosen books
• List information about those orders assigned to him/her
• Update order status
• Insert new books

Functions for analysts

• What types of books are better sold in the second quarter than the first quarter?
• What kind of books/customers are most profitable?
• What is the average time between the order placed and shipped?
• Is there any significant difference between books published by different publishers in terms of profitability?