Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/srikanth-kandi/optic-lens
This is a full stack web development project
https://github.com/srikanth-kandi/optic-lens
apache-tomcat bootstrap css3 html5 javascript oracle-10g sass sql
Last synced: 8 days ago
JSON representation
This is a full stack web development project
- Host: GitHub
- URL: https://github.com/srikanth-kandi/optic-lens
- Owner: srikanth-kandi
- Created: 2022-01-31T10:55:16.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-24T07:54:25.000Z (over 1 year ago)
- Last Synced: 2024-11-04T00:18:50.771Z (about 2 months ago)
- Topics: apache-tomcat, bootstrap, css3, html5, javascript, oracle-10g, sass, sql
- Language: Java
- Homepage: https://srikanth-kandi.github.io/Optic-Lens/
- Size: 56.4 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Optic-Lens
This is an Full Stack project developed as part of the my [college](https://www.lbrce.ac.in) Full Stack Web Development lab.This Project is developed using HTML5, CSS3, Bootstrap, JavaScript, Sass, Oracle DB, Apache tomcat.
👉 This project includes an login and logout sessions
👉 Admin access controls like user selection, updation and deletion
[Required Oracle Database & Tomcat exe files](https://drive.google.com/drive/folders/1ER2m0xs-ovLVUHxWjeTbLOx6Lu0-dl40?usp=sharing)
```sql
SELECT SYS_CONTEXT('USERENV','SERVER_HOST') FROM dual /* 👉 System Name */;
``````sql
SELECT SYS_CONTEXT('USERENV','INSTANCE_NAME') FROM dual /* 👉 Service Name */;
```Registration form table
```sql
create table registration(
username varchar(50) not null,
email varchar(255) primary key not null,
password varchar(20) not null,
cpass varchar(20) not null,
user_type varchar(5) not null
);
```Subscribe table
```sql
create table subscribe(
email varchar(255) not null
);
```Contact us table
```sql
create table contact(
name varchar(20) not null,
email varchar(255) not null,
mobile number(10) not null,
message varchar(200) not null
);
```Payment form table
```sql
create table payment(
name varchar(50) not null,
email varchar(255) not null,
name_on_card varchar(50) not null,
address varchar(150) not null,
credit_card_number number(16) not null,
city varchar(50) not null,
expiry_month varchar(10) not null,
state varchar(30) not null,
zip_code number(6) not null,
expiry_year number(4) not null,
cvv number(3) not null
);
```