Login & administration page

Slides:



Advertisements
Similar presentations
RP Designs Semi-Custom e-Commerce Package. Overview RP Designs semi- custom e-commerce package is a complete website solution. Visitors can browse a catalog.
Advertisements

PHP SQL. Connection code:- mysql_connect("server", "username", "password"); Connect to the Database Server with the authorised user and password. Eg $connect.
Exploring PHP and MySQL Using an Online Travel Agency as a Case Study Charles R. Moen, M.S. Morris M. Liaw, Ph.D. October 9, 2004 ACET 2004.
Florida CRD Updates April 1, 2011 Telamon Corporation.
Web Store Training. Table of Contents Sign In : Accessing the site My Profile : Managing your account Catalog Navigation : Finding items and ordering.
Group X7 – Year 2010/2011 – First Year Team Project.
NMED 3850 A Advanced Online Design February 25, 2010 V. Mahadevan.
PHP (2) – Functions, Arrays, Databases, and sessions.
Vinotemp Online Store Presented by: Ken Hoang. Motivation To help the company selling its products online A part of my works.
Chapter 10 Managing State Information Using Sessions.
Conference Calendar CS 337 Project Supervised by Professor Russell Abbott. Alexandre Lomovtsev, Haritha Sankavaram, Lewis Chen, Rasha Mohamed.
New Student Orientation Registration System Stephen Nakamura EE496 Preliminary Design Review Fall 2008.
Reference and Instruction Automated Statistics Gathering and Reporting System Members: Patrick Chen (pyc7) Soo-Yung Cho (sc444) Gregg Herlacher (gah24)
New Student Orientation Registration System Stephen Nakamura EE496 Final Presentation Fall 2008.
The easy way to shop online and explore all around market sitting at home Project Created & Presented By: Siddhant Aggarwal 2374 CSE-B(4 TH YEAR) DITM.
Project Implementation for COSC 5050 Distributed Database Applications Lab1.
Web Application Vulnerabilities Checklist. EC-Council Parameter Checklist  URL request  URL encoding  Query string  Header  Cookie  Form field 
STOCKDOC Advanced Stock Management System
Sql Server Advanced Features MIS 424 Professor Sandvig.
Web-based Document Management System By Group 3 Xinyi Dong Matthew Downs Joshua Ferguson Sriram Gopinath Sayan Kole.
Lecture 3 – Data Storage with XML+AJAX and MySQL+socket.io
Grade Management System -Leo Barnabas Mariadoss Anthoniraj.
Session 5: Working with MySQL iNET Academy Open Source Web Development.
MDECA SECURITY UPDATES Update & Review for Security Changes!
By Daniel Siassi.  XHTML  For Structure  CSS  For Stylization of Structure  SQL Database  Store Customer, Calendar, and Order Data  PHP  Server-side.
Server-side Scripting Powering the webs favourite services.
PHP Programming with MySQL Slide 8-1 CHAPTER 8 Working with Databases and MySQL.
Online Music Store MSE Project Presentation I Presented by: Reshma Sawant Major Professor: Dr. Daniel Andresen.
1 PHP and MySQL. 2 Topics  Querying Data with PHP  User-Driven Querying  Writing Data with PHP and MySQL PHP and MySQL.
Mark Dixon Page 1 23 – Web applications: Writing data to Databases using PhP.
09/04/2008 Wallops Institutional Information Management System WIIMS An Overview.
© 2003 By Default! A Free sample background from Slide 1 Week 2  Free PHP Hosting Setup  PHP Backend  Backend Security 
Chapter 7 Working with Databases and MySQL PHP Programming with MySQL 2 nd Edition.
Quick Start Guide: Administrator Basics Learn about: 1.Adding users to the LOAMS system 2.How to modify or delete existing users 3.How to reset passwords.
My final project was creating an online weapon store. In my store I have two different lists of weapons, melee and fire. I have a registration form where.
SYST Web Technologies SYST Web Technologies Databases & MySQL.
Week seven CIT 354 Internet II. 2 Objectives Database_Driven User Authentication Using Cookies Session Basics Summary Homework and Project 2.
The Pencil Company Team Slave to the WWW. Team Members  Ashley Petrinec – Co-lead of documentation and design  Jennifer Williams – Co-lead of documentation.
1 IT420: Database Management and Organization Database Security 5 April 2006 Adina Crăiniceanu
Case Study Dynamic Website - Three Tier Architecture
GOAL User Interactive Web Interface Update Pages by Club Officers Two Level of Authentication.
CS779 Term Project Steve Shoyer Section 5 December 9, 2006 Week 6.
Final Project Presentation on Website design for Educational purpose on “Ethiopian National Heritage” By Fitsum F. Abebe Course teachers and facilitators.
Information Management System “Institutions Module" Information Management System “Institutions Module" The System management module is an integrated part.
The basics of knowing the difference CLIENT VS. SERVER.
Mr. Justin “JET” Turner CSCI 3000 – Fall 2015 CRN Section A – TR 9:30-10:45 CRN – Section B – TR 5:30-6:45.
Oracle 11g: SQL Chapter 7 User Creation and Management.
ASSIGNMENT 2 Salim Malakouti. Ticketing Website  User submits tickets  Admins answer tickets or take appropriate actions.
CSCI 6962: Server-side Design and Programming Shopping Carts and Databases.
Web Application Design. Data –What data is available? –How do we store it or how is it stored in the DB? Schema Data types Etc. –Where is the data?
1 /6 Introducing TaxWise Online’s Administrator Functions © 2006, Universal Tax Systems, Inc. All Rights Reserved. Administrator Functions Objectives –In.
Introduction to Dynamic Web Programming
iShop Training Module Access & Security
IS1500: Introduction to Web Development
Unix System Administration
B2C Online Store. B2C Online Store Group Members Introduction Name: Muhammad Gulfam VU ID: MC Program: MCS Supervisor: Muhammad Qamar Usman.
Riding the Wave of Innovation
Checkout and Electronic Payment Processing
MAJOR PROJECT PPT ON B-TOGETHER A Social Networking Site.
Database Driven Websites
Chapter 8 Working with Databases and MySQL
Chapter 13 Security Methods Part 3.
Lecture 2 - SQL Injection
HVMR: PHP-MySQL System
Web Programming Language
Grocery Store Outline csc242 – web programming.
FCL – Administration Tool
Hypertext Preprocessor
Establish, configure and maintain a website/system
Presentation transcript:

Login & administration page E-Commerce Login & administration page

Login and administration page A section of our Shopping Cart that allows the system to identify who the users are and what functions can be accomplished by them.

Login process Login Admnistrative tasks Regular user tasks SELF-SERVICE Login Create, modify and delete user accounts Retrieve user ID Reset passwords Sign-in/Sign-out Admnistrative tasks Assign privileges View/Modify inventories View financial information Regular user tasks View order history Track an order View items in shopping cart

Security levels 0 – Regular User. Users has the ability to inquire about their own transactions, track packages, maintain payment methods, update personal information, etc. 1 – Administrator. Users with administrative privileges can set parameters for the system, view financial information, adjust inventory levels, etc. More security levels can be added if required

Guidelines User account information must be stored on a SQL table (i.e. MySQL). This table must have at least the following fields User ID (Unique, Primary Key) First Name Last Name Password Security Level Passwords must be encrypted prior to storing them on the database

Knowledge required HTML/PHP CSS MySQL

deliverables Milestone Report (Word Document) Screenshots of login page (Before and after login) Screenshot of Admin page showing a username and security level assigned Screenshot of MySQL table where user credentials are stored Source code

Resources Dynamic Web Programming and HTML5 Chapter 8 – Server-Side Programming with PHP Chapter 9 – Database-Driven Websites Login System Tutorial with PHP and MYSQL Database (https://youtu.be/Pz5CbLqdGwM) How to create a complete login system in PHP | PHP tutorial | Learn PHP programming (https://youtu.be/xb8aad4MRx8) User Registration Form with PHP and MySQL (https://youtu.be/FgSysHTsb6A)

E-commerce login page examples AMAZON.COM

E-commerce login page examples apple.COM