-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathprepCloud.html
More file actions
118 lines (97 loc) · 6.14 KB
/
Copy pathprepCloud.html
File metadata and controls
118 lines (97 loc) · 6.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Advaith Reddy</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./styles/main.css">
<link rel="icon" href="assets/images/logo.png">
</head>
<body>
<div id="container--main">
<a href="index.html">← Back</a>
<h1>Shell - Operating Systems, Linux, Shell</h1>
<div class="line-break"></div>
<ul>
<li><a href="#">Source code</a> <span class="tooltip"> ℹ️<span class="info-text">Working on the Project will be uploaded soon.</span></span></li>
</ul>
<h3>PrepCloud - Secure Cloud Storage Platform</h3>
<div class="launch-timer">
<div>
<p id="days">00</p>
<span>Days</span>
<p id="hours">00</p>
<span>Hours</span>
<p id="minutes">00</p>
<span>Minutes</span>
<p id="seconds">00</p>
<span>Seconds</span>
</div>
</div>
<script>
var countDownDate = new Date("Nov 29, 2023 00:00:00").getTime();
var x = setInterval(function(){
var now = new Date().getTime();
var distance = countDownDate - now;
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 *60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
document.getElementById("days").innerHTML = days;
document.getElementById("hours").innerHTML = hours;
document.getElementById("minutes").innerHTML = minutes;
document.getElementById("seconds").innerHTML = seconds;
},1000);
</script>
<br>
<summary>Description</summary>
<p>PrepCloud is a comprehensive cloud storage platform designed to provide users with secure and efficient data storage and management capabilities.
It combines a robust backend system with a user-friendly frontend interface to offer a seamless experience for individuals and organizations looking
to store and manage their digital assets in the cloud.</p>
<summary>Introduction</summary>
<p>In today's digital age, the need for reliable and secure cloud storage solutions is paramount. Whether it's personal documents, business files, or
multimedia content, PrepCloud offers a safe and convenient space for users to store and access their data from anywhere, at any time. </p>
<summary>Key Features</summary>
<ul>
<li><b>User Authentication</b> Users can sign up and sign in securely, with their credentials being validated on the backend. Passwords are hashed and stored securely.</li>
<li><b>Data Storage</b> PrepCloud allows users to upload and store various types of files, ensuring that data remains intact and easily accessible.</li>
<li><b>User-Friendly Interface</b> The frontend interface is designed with a focus on user experience, making it simple for users to navigate, upload, and manage their files.</li>
<li><b>Validation</b> Robust validation mechanisms are in place for user inputs, including name, email, and password, ensuring data integrity.</li>
<li><b>Token-Based Authentication</b> User sessions are managed using JSON Web Tokens (JWT) to provide secure and efficient communication between the frontend and backend.</li>
<li><b>Data Encryption</b> Data is encrypted to safeguard user privacy and confidentiality, ensuring that even in transit, data remains secure.</li>
<li><b>Error Handling</b> Comprehensive error handling is implemented to provide informative and user-friendly error messages in case of issues.</li>
</ul>
<summary>Technologies Used:</summary>
<ul>
<li><b>Backend</b> Node.js, Express.js, MongoDB (for data storage), JWT for user authentication, and bcrypt for password hashing.</li>
<li><b>Frontend</b> Vue.js for building the user interface.</li>
</ul>
<summary>How to Use</summary>
<ol>
<li><b>Sign Up:</b> Users can create an account by providing their name, email, and password. The system validates the input and securely stores user data in the database.</li>
<li><b>Sign In:</b> Once registered, users can sign in using their credentials. The system verifies the user's identity, generates a JWT token, and sends it to the frontend for secure communication.</li>
<li><b>Upload Files:</b> Users can upload files of various types, such as documents, images, and videos, to their cloud storage.</li>
<li><b>Manage Files:</b> The frontend provides features for users to view, organize, and manage their uploaded files.</li>
</ol>
<summary>Security</summary>
<ul>
<li>User passwords are securely hashed before being stored in the database, preventing unauthorized access.</li>
<li>JWT tokens are used for secure communication, preventing data interception by malicious parties.</li>
<li>Data encryption ensures user files remain confidential.</li>
</ul>
<summary>Credits</summary>
<p>This project is the collaborative effort of a dedicated team, including:</p>
<ul>
<li>Gavini Sumanth</li>
<li>Advaith Reddy</li>
</ul>
<summary>Future Enhancements</summary>
<p>The project's development roadmap includes features such as folder organization, file sharing, and advanced search functionality to further enhance user experience and utility.</p>
<summary>Project Status</summary>
<p>PrepCloud is currently in the development phase, with plans for ongoing improvements and feature additions to deliver a robust and secure cloud storage solution.</p>
<summary>⾤ This Project is Open Source, anyone willing to contribute can Go through this <a href="https://github.com/advaithreddy/Drive">repo.</a></summary>
</div>
</body>
</html>