-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
440d5ef
commit 549f399
Showing
5 changed files
with
150 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>File uploader</title> | ||
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script> | ||
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@800&family=Roboto+Mono&display=swap" rel="stylesheet"> | ||
<link rel="icon" href="/favicon.ico" type="image/x-icon"> | ||
<link rel="stylesheet" href="style.css"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
</head> | ||
|
||
|
||
<body> | ||
<main> | ||
<h1>File uploader</h1> | ||
<nav> | ||
<a href="https://fu.andcool.ru">Home</a> | ||
<a href="https://fu.andcool.ru/login/" id="login_page_a">Login</a> | ||
<a href="https://fu.andcool.ru/tos/" id="login_page_a" class="selected">ToS</a> | ||
<a href="https://github.com/Andcool-Systems/File-uploader" target="_blank">GitHub</a> | ||
</nav> | ||
<hr> | ||
<p style="margin-top: 0%;font-size: 80%;">by AndcoolSystems</p> | ||
<pre> | ||
<b id="head">Terms of Service and Privacy Policy</b> | ||
|
||
These Terms of Service ("Terms") govern your use of this Service, and our commitment to your privacy. | ||
|
||
<b id="head2nd">Terms of Service:</b> | ||
|
||
<b>1. User Agreement:</b> | ||
1.1. By using the Service, you agree to the terms of the provided user agreement. | ||
|
||
<b>2. Responsibility for Uploaded Content:</b> | ||
2.1. The Service is not responsible for the content of uploaded materials. | ||
2.2. Uploaded content reflects only the author's point of view. | ||
|
||
<b>3. Copyright:</b> | ||
3.1. Users undertake not to upload, transmit, or exchange files that violate the copyrights of third parties. | ||
3.2. The Service has the right to remove any materials violating copyrights without prior notice. | ||
|
||
<b>4. Prohibited Materials:</b> | ||
4.1. Uploading, transmitting, or exchanging files containing viruses, malware, pornography, calls for violence, or any other materials violating laws and moral standards is prohibited. | ||
|
||
<b>5. Privacy:</b> | ||
5.1. The Service commits to maintaining the confidentiality of user data. | ||
5.2. Users agree to the collection and processing of their personal data in accordance with the privacy policy. | ||
|
||
<b>6. Responsibility:</b> | ||
6.1. The Service is not responsible for data loss resulting from the use of the Service. | ||
6.2. Users are responsible for the security of their data and password for accessing the Service. | ||
|
||
<b id="head2nd">Privacy Policy:</b> | ||
|
||
<b>1. Collection and Use of Information:</b> | ||
1.1. The Service collects only necessary information to provide services, such as login and password for registration. | ||
1.2. Information will not be shared with third parties without the user's consent. | ||
|
||
<b>2. Data Storage:</b> | ||
2.1. The Service ensures secure storage of user data. | ||
2.2. Users have the right to request the deletion of their data from the system. | ||
|
||
<b>3. Cookies:</b> | ||
3.1. The Service uses cookies to enhance the user experience. | ||
3.2. Users can disable cookies in their browser settings. | ||
|
||
<b>4. Security:</b> | ||
4.1. The Service takes measures to secure data transmission. | ||
4.2. Users undertake not to disclose their password to third parties. | ||
|
||
<b>5. Changes in Policy:</b> | ||
5.1. The Service reserves the right to make changes to the privacy policy. | ||
5.2. Changes will be published on the Service's website. | ||
|
||
<b>Last update: 26.01.2024</b> | ||
</pre> | ||
</main> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
|
||
body{ | ||
font-family: 'Roboto Mono', monospace; | ||
display: flex; | ||
justify-content: center; | ||
background-color: #222222; | ||
color: #eeeeee; | ||
height: 100%; | ||
overflow-x: hidden; | ||
} | ||
|
||
main{ | ||
width: 70%; | ||
text-align: left; | ||
} | ||
|
||
h1{ | ||
font-family: 'Roboto Mono', monospace; | ||
font-weight: 400; | ||
} | ||
|
||
hr{ | ||
border: 1px solid rgb(105, 105, 105); | ||
} | ||
p{margin-left: 2px;} | ||
|
||
|
||
|
||
nav a{ | ||
cursor: pointer; | ||
color: white; | ||
text-decoration: none; | ||
} | ||
nav a:hover{ | ||
font-weight: 600; | ||
text-decoration: underline dashed; | ||
} | ||
|
||
#login_mess{ | ||
font-style: italic; | ||
} | ||
|
||
.selected{font-weight: 600;} | ||
|
||
pre{ | ||
text-wrap: wrap; | ||
} | ||
#head{ | ||
font-size: 150%; | ||
} | ||
#head2nd{ | ||
font-size: 140%; | ||
} | ||
|
||
b{ | ||
font-size: 120%; | ||
} | ||
|
||
@media(max-width: 425px){ | ||
main{width: 90%;} | ||
h1{font-size: 130%;} | ||
p{font-size: 90%;} | ||
|
||
} |