-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathT&C.html
More file actions
112 lines (104 loc) · 6.47 KB
/
T&C.html
File metadata and controls
112 lines (104 loc) · 6.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="next.css">
</head>
<body>
<div id="welcome-user" style="text-align: center; margin: 10px 0 0; padding: 20px; font-weight: bold; font-size: 1.3rem; color: #ffb6c1; background-color: #C599B6;">
Welcome, <span id="welcome-name">User</span> 👏
</div>
<nav class="navbar">
<!-- Navbar -->
<div class="nav-right">
<div class="logo">
<img src="image/int.png" alt="Logo">
NextStep
</div>
<div class="menu">
<a href="home.html">Home</a>
<a href="user-dashboard.html">DashBoard</a>
<!--span id="navUsername"></span-->
<a href="resource.html">Preparation</a>
<a href="Contact.html">Contact</a>
<a href="about.html">About</a>
</div>
<a href="logout.html" class="login-btn">LogOut →</a>
</div>
</nav>
<div style="margin-top: 100px;"></div>
<section id="terms-conditions">
<h1><strong>Terms and Conditions</strong></h1>
<p>
An individual applicant or team participating in NEXTSTEP ('Platform') shall be referred to as a 'participant or participants'. By registering to use the Platform, the participants acknowledge and agree to the following terms and conditions (hereinafter referred to as 'NEXTSTEP's terms and conditions'). The Platform also reserves the right to cancel or amend these Terms and Conditions at any time without prior notice.
</p>
<h2><strong>Eligibility and Registration</strong></h2>
<p>
1. Users must provide accurate and complete information during registration.<br>
2. Any false or misleading information may result in immediate suspension or permanent termination of access to the platform.<br>
3. Users must comply with all legal requirements, and NEXTSTEP reserves the right to verify the identity and background of any participant.
</p>
<h2><strong> Data Usage and Privacy</strong></h2>
<p>
1. By registering, users agree that their submitted data may be stored and processed for the purpose of internship tracking and analytics.<br>
2. Personal data will not be shared with third parties without consent unless required by law.<br>
3. Any attempt to manipulate, extract, or misuse data will lead to strict legal action, including permanent ban and legal proceedings.
</p>
<h2><strong>Internship Listings and Applications</strong></h2>
<p>
1. Users must interact with employers, recruiters, and fellow applicants in a professional and respectful manner.<br>
2. Hate speech, harassment, discrimination, or any form of misconduct will lead to immediate account termination.<br>
3. Unauthorized access, hacking attempts, or any malicious activity on the platform will be reported to legal authorities.
</p>
<h2><strong>Platform Rights and Restrictions</strong></h2>
<p>
1. NEXTSTEP reserves the right to reject, suspend, or delete any application, internship posting, or user account if found violating these Terms.<br>
2. The platform is not responsible for third-party actions, including employer decisions, hiring processes, or external company policies.<br>
3. NEXTSTEP has the right to modify platform features, restrict access, or terminate services without prior notice.
</p>
<h2><strong>Legal Compliance and Liabilities</strong></h2>
<p>
1. Users must comply with all applicable laws, including data protection, anti-fraud regulations, and employment laws.<br>
2. Any illegal activities conducted through the platform will result in legal action, including notification to law enforcement agencies.<br>
3. NEXTSTEP is not liable for any disputes arising between users and third parties, including employers.
</p>
<h2><strong>Account Termination and Rejection Policy</strong></h2>
<p>
1. If any illegal or unauthorized activity is detected, NEXTSTEP reserves the right to immediately reject applications, cancel registrations, and permanently ban the user.<br>
2. Rejected users will not be allowed to re-register without prior approval from the platform.<br>
3. Any disputes regarding terminations must be communicated in writing within 15 days of the action taken.
</p>
<h2><strong> Modification of Terms</strong></h2>
<p>
1. NEXTSTEP reserves the right to modify these Terms and Conditions at any time without prior notice.<br>
2. Continued use of the platform after modifications implies acceptance of the new terms.<br>
</p>
<p>
By using NEXTSTEP, participants agree to abide by these Terms and Conditions. Failure to comply will result in strict action, including legal consequences where necessary.
</p>
</section>
<script>
// This fetch assumes you have a route like `/api/user/profile` that sends user data
async function loadUserData() {
try {
const res = await fetch('/api/user/profile', {
method: 'GET',
credentials: 'include'
});
const data = await res.json();
if (res.ok) {
document.getElementById('welcome-name').textContent = data.username;
} else {
window.location.href = '/login.html';
}
} catch (err) {
console.error('❌ Error loading user profile:', err);
window.location.href = '/login.html';
}
}
window.onload = loadUserData;
</script>
</body>
</html>